Don't wait for click message in webelem tests

Looks like we get this sometimes:

----> Waiting for 'Clicked non-editable element!' in the log
14:02:14.976 DEBUG    webview    webkittab:find_at_pos:618 Hit test result element is null!
14:02:14.976 DEBUG    mouse      mouse:_mousepress_insertmode_cb:149 Got None element, scheduling check on mouse release
14:02:14.977 DEBUG    mouse      webview:mousePressEvent:299 Normal click, setting normal target
14:02:14.978 DEBUG    mouse      mouse:mouserelease_insertmode_cb:173 Element vanished!
This commit is contained in:
Florian Bruhin 2017-04-28 17:29:19 +02:00
parent 5ed870e0c6
commit c8090b5388

View File

@ -80,17 +80,17 @@ Feature: Javascript stuff
Scenario: Clicking on form element with tagName child
When I open data/issue2569.html
And I run :click-element id theform
And I wait for "Clicked editable element!" in the log
And I wait for "Sending fake click to *" in the log
Then no crash should happen
Scenario: Clicking on svg element
When I open data/issue2569.html
And I run :click-element id icon
And I wait for "Clicked non-editable element!" in the log
And I wait for "Sending fake click to *" in the log
Then no crash should happen
Scenario: Clicking on li element
When I open data/issue2569.html
And I run :click-element id listitem
And I wait for "Clicked non-editable element!" in the log
And I wait for "Sending fake click to *" in the log
Then no crash should happen