2016-01-20 21:24:51 +01:00
|
|
|
Feature: Javascript stuff
|
|
|
|
|
|
|
|
Integration with javascript.
|
|
|
|
|
2016-07-13 10:25:21 +02:00
|
|
|
Scenario: Using console.log
|
|
|
|
When I set general -> log-javascript-console to debug
|
|
|
|
And I open data/javascript/consolelog.html
|
|
|
|
Then the javascript message "console.log works!" should be logged
|
|
|
|
|
2016-09-05 14:34:52 +02:00
|
|
|
# Causes segfaults...
|
2016-09-05 14:45:34 +02:00
|
|
|
@qtwebengine_createWindow
|
2016-09-05 14:34:52 +02:00
|
|
|
Scenario: Opening/Closing a window via JS
|
|
|
|
When I open data/javascript/window_open.html
|
|
|
|
And I run :tab-only
|
|
|
|
And I run :click-element id open-normal
|
|
|
|
And I wait for "Changing title for idx 1 to 'about:blank'" in the log
|
|
|
|
And I run :tab-focus 1
|
|
|
|
And I run :click-element id close-normal
|
|
|
|
Then "Focus object changed: *" should be logged
|
|
|
|
|
|
|
|
# Causes segfaults...
|
2016-09-05 14:45:34 +02:00
|
|
|
@qtwebengine_createWindow
|
2016-09-05 14:34:52 +02:00
|
|
|
Scenario: Opening/closing a modal window via JS
|
|
|
|
When I open data/javascript/window_open.html
|
|
|
|
And I run :tab-only
|
|
|
|
And I run :click-element id open-modal
|
|
|
|
And I wait for "Changing title for idx 1 to 'about:blank'" in the log
|
|
|
|
And I run :tab-focus 1
|
|
|
|
And I run :click-element id close-normal
|
|
|
|
Then "Focus object changed: *" should be logged
|
2016-09-05 14:45:34 +02:00
|
|
|
# WebModalDialog with QtWebKit, WebDialog with QtWebEngine
|
|
|
|
And "Web*Dialog requested, but we don't support that!" should be logged
|
2016-09-05 14:34:52 +02:00
|
|
|
|
2016-01-20 21:24:51 +01:00
|
|
|
# https://github.com/The-Compiler/qutebrowser/issues/906
|
|
|
|
|
2016-09-05 10:54:28 +02:00
|
|
|
@qtwebengine_skip
|
|
|
|
Scenario: Closing a JS window twice (issue 906) - qtwebkit
|
2016-01-20 21:24:51 +01:00
|
|
|
When I open about:blank
|
2016-09-05 14:34:52 +02:00
|
|
|
And I run :tab-only
|
2016-09-05 14:41:05 +02:00
|
|
|
When I open data/javascript/window_open.html in a new tab
|
|
|
|
And I run :click-element id open-normal
|
2016-01-24 18:43:07 +01:00
|
|
|
And I wait for "Changing title for idx 2 to 'about:blank'" in the log
|
2016-01-20 21:24:51 +01:00
|
|
|
And I run :tab-focus 2
|
2016-09-05 14:41:05 +02:00
|
|
|
And I run :click-element id close-twice
|
2016-01-20 21:24:51 +01:00
|
|
|
Then "Requested to close * which does not exist!" should be logged
|