зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1786639 - [wdspec] Use pagehide instead of unload for webdriver navigate test r=webdriver-reviewers,whimboo
Depends on D208638 Differential Revision: https://phabricator.services.mozilla.com/D208639
This commit is contained in:
Родитель
6bda69a738
Коммит
2251735c2d
|
@ -1,4 +0,0 @@
|
|||
[navigate.py]
|
||||
|
||||
[test_link_unload_event]
|
||||
bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1786639
|
|
@ -36,14 +36,14 @@ def test_multi_line_link(session, inline, url):
|
|||
assert session.url == url(link)
|
||||
|
||||
|
||||
def test_link_unload_event(session, url, server_config, inline):
|
||||
def test_navigation_retains_input_state(session, url, server_config, inline):
|
||||
link = "/webdriver/tests/classic/element_click/support/input.html"
|
||||
session.url = inline(f"""
|
||||
<body onunload="checkUnload()">
|
||||
<body onpagehide="checkPageHide()">
|
||||
<a href="{link}">click here</a>
|
||||
<input type="checkbox">
|
||||
<script>
|
||||
function checkUnload() {{
|
||||
function checkPageHide() {{
|
||||
document.getElementsByTagName("input")[0].checked = true;
|
||||
}}
|
||||
</script>
|
||||
|
|
Загрузка…
Ссылка в новой задаче