Skip to content

Commit

Permalink
feat!: Add attribute-based element query selector methods
Browse files Browse the repository at this point in the history
Fixes #661
Part of #1183
  • Loading branch information
joelpop authored and mcollovati committed Apr 8, 2024
1 parent 250a9e4 commit e4d395d
Show file tree
Hide file tree
Showing 16 changed files with 1,924 additions and 770 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ Vaadin TestBench is both a unit testing tool and an integration testing tool.

The unit testing tool does not rely on a browser, so its tests run very fast. Because these tests do not run a browser, the browser's Javascript is not available.

The integration testing tool is build on Selenium and is used for automated user interface testing of web applications on multiple platforms and browsers.
The integration testing tool is built on Selenium and is used for automated user interface testing of web applications on multiple platforms and browsers.

Choosing testing tools optimized for Vaadin UI testing and supported by Vaadin provides you with the best integration and upward compatibility with the Vaadin framework.

## Releases

Official releases of this add-on are available at [http://vaadin.com/addon/vaadin-testbench](https://github.com/vaadin/testbench-demo).
Official releases of this add-on are available at
[https://vaadin.com/directory/component/vaadin-testbench](https://vaadin.com/directory/component/vaadin-testbench).

## Building TestBench

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ protected boolean hasCssClass(WebElement element, String className) {
* the actual element
*/
protected static void assertEquals(WebElement expectedElement,
WebElement actualElement) {
WebElement actualElement) {
WebElement unwrappedExpected = expectedElement;
WebElement unwrappedActual = actualElement;
while (unwrappedExpected instanceof WrapsElement) {
Expand Down

Large diffs are not rendered by default.

Loading

0 comments on commit e4d395d

Please sign in to comment.