File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
java/test/org/openqa/selenium/bidi/input Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -201,14 +201,19 @@ void canGenerateKeyboardShortcuts() {
201
201
@ NotYetImplemented (
202
202
value = EDGE ,
203
203
reason = "https://github.com/GoogleChromeLabs/chromium-bidi/issues/2321" )
204
- public void testSelectionSelectBySymbol () {
204
+ public void testSelectionSelectBySymbol () throws InterruptedException {
205
205
driver .get (appServer .whereIs ("single_text_input.html" ));
206
206
207
207
WebElement input = driver .findElement (By .id ("textInput" ));
208
208
209
209
inputModule .perform (
210
210
windowHandle , getBuilder (driver ).click (input ).sendKeys ("abc def" ).getSequences ());
211
211
212
+ // TODO: The wait until condition does not wait for the attribute.
213
+ // Hence this is required.
214
+ // Not an ideal fix but it needs to be triaged further.
215
+ Thread .sleep (5000 );
216
+
212
217
shortWait .until (ExpectedConditions .attributeToBe (input , "value" , "abc def" ));
213
218
214
219
inputModule .perform (
You can’t perform that action at this time.
0 commit comments