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

`driver.manage().logs().get(LogType.BROWSER).getAll()` will not wait for Vaadin to complete processing before fetching the log entries. This may lead to missing entires unless there's some other testbench command since the last time...

I had this issue in one of our projects and was able to reproduce it in the testbench-demo (https://github.com/vaadin/testbench-demo). Vaadin Version in Testbench-demo: 10.0.1 Vaadin Version in our project: 10.0.10...

Vaadin 8.8.5 TestBench 5.2.0 Using latest ChromeDriver 76.0.3809.68 and Chrome 76.0.3809.100 (Official Build) (64-bit) in Windows 10 Pro. (Tomcat 8.5.34, jdk1.8.0_202) Using simple example MenuBar demo: ``` MenuBar menuBar =...

When there is an element selected by default in the combobox, and the selectByText is used, this previous element is not clear. The text for the new element is written...

Create/Update: - JavaDoc - Asciidoc for vaadincom

I set up a simple test project based on the latest starter from https://vaadin.com/start/latest/project-base-spring together with TestBench 6.0.1. Now executing getDriver().get("http://localhost:8080/"); results in 'network error: page not reachable'-like results for...

We have a special situation in our application where a selection on a ComboBox changes the UI and removes this ComboBox. The testbench tries to close the now non-existing ComboBox...

This should be investigated as I have not tested this myself, but got some vague input that this might be the case. Apparently latest FW8 and latest TB5.

Currently, the only way to set the `--headless` Chrome option seems to be like thus: ``` protected WebDriver createDriver() { ChromeOptions options = new ChromeOptions(); options.addArguments("--headless"); options.addArguments("--disable-gpu"); return TestBench.createDriver(new ChromeDriver(options));...

Browser: Safari 10 I'm running tests via saucelabs. Here is the test example: https://github.com/vaadin/platform/pull/479/files#diff-4efa8534f61bb6a93aa509df91600022R70 I'm trying to access the element with `button` id within shadow root of a `ButtonElement` :...