testbench icon indicating copy to clipboard operation
testbench copied to clipboard

Vaadin TestBench is a tool for automated user interface testing of Vaadin applications.

Results 102 testbench issues
Sort by recently updated
recently updated
newest added

Vaadin components should not be augmented with testing functionality. All extension methods that adds expectations should be removed and tests fixed

UITest

Testing framework should not add a common placeholder property, so that component can be searched such an existing feature. Extension methods should be remove and existing tests fixed accordingly.

UITest

Test framework should not introduce functionality that gets or sets element attributes on Vaadin component. Remove all extension methods that manages element attributes. An example is `Component.tooltip` in `ComponentUtils.kt`

UITest

Running the [testbench-demo](https://github.com/vaadin/testbench-demo) project, `resizeViewPortTo()` at this line always produces the wrong height, that causes a failure at this [line](https://github.com/vaadin/testbench-demo/blob/349a11d545719158e026b1a92d7c8a1adac3e54b/src/test/java/com/vaadin/testbenchexample/advanced/ScreenshotIT.java#L32). The test fails with a `java.lang.UnsupportedOperationException: Viewport couldn't be adjusted.`,...

We have a integration test that clicks on grid row that will open the grid in edit mode: kskMr.getRow(0).click(); kskMr is a GridElement. This no longer works since Vaadin 14.7.7.

TestBench doesn't seem to work with the combo of Vaadin version 14 + Java 16. ### To reproduce: Run [V14 branch](https://github.com/vaadin/skeleton-starter-flow-spring/tree/v14 ) of the skeleton-starter-flow-spring project with Java 16 (tested...

In some instances where there is a error in the code (see vaadin/flow#9905 and vaadin/flow#11669) that makes waitForVaadin wait until timeout occurs in each of these cases it would have...

At least TeamCity eats any real error messages as well as knowledge of which type of error occurred when `maxAttempts` is set to 2 or higher. Every failed test just...

ComboBoxElement.selectByText is not working when using custom values are allowed. Vaadin 14.3.7. Tested on Chrome and Firefox To reproduce, based on this view: ``` comboBox.setItems("00", "11", "22", "33"); comboBox.addCustomValueSetListener(e ->...

If a user has MPR in use, it is impossible to write test cases that interacts with parts that use both V7/8 and V14+ code.

documentation