Commit 76d6e299 authored by Robert Ma's avatar Robert Ma Committed by Commit Bot

[blinkpy] Roll WPT tools

Importantly, this rolls some webdriver/ changes that will fix the
regression in issue 1115609. Removed the related expectations introduced
in the import https://crrev.com/c/2351549 as well.

Bug: 1115609
Change-Id: I5f0ebfc1d657556e166fc6d433b24f3f2ff8a14a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2351383Reviewed-by: default avatarStephen McGruer <smcgruer@chromium.org>
Commit-Queue: Robert Ma <robertma@chromium.org>
Cr-Commit-Position: refs/heads/master@{#797422}
parent 0941ac83
...@@ -22,7 +22,7 @@ Local Modifications: None ...@@ -22,7 +22,7 @@ Local Modifications: None
Name: web-platform-tests - Test Suites for Web Platform specifications Name: web-platform-tests - Test Suites for Web Platform specifications
Short Name: wpt Short Name: wpt
URL: https://github.com/web-platform-tests/wpt/ URL: https://github.com/web-platform-tests/wpt/
Version: 6a5c1eb4f386da68adc77c84ac3f6e3fa1cb3033 Version: da260d2136bc4bec547fa7ebe98598d77e0f5841
License: LICENSES FOR W3C TEST SUITES (https://www.w3.org/Consortium/Legal/2008/03-bsd-license.html) License: LICENSES FOR W3C TEST SUITES (https://www.w3.org/Consortium/Legal/2008/03-bsd-license.html)
License File: wpt/wpt/LICENSE.md License File: wpt/wpt/LICENSE.md
Security Critical: no Security Critical: no
......
...@@ -9,7 +9,7 @@ cd $DIR ...@@ -9,7 +9,7 @@ cd $DIR
TARGET_DIR=$DIR/wpt TARGET_DIR=$DIR/wpt
REMOTE_REPO="https://github.com/web-platform-tests/wpt.git" REMOTE_REPO="https://github.com/web-platform-tests/wpt.git"
WPT_HEAD=6a5c1eb4f386da68adc77c84ac3f6e3fa1cb3033 WPT_HEAD=da260d2136bc4bec547fa7ebe98598d77e0f5841
function clone { function clone {
# Remove existing repo if already exists. # Remove existing repo if already exists.
......
...@@ -12,7 +12,6 @@ ...@@ -12,7 +12,6 @@
"parser": "get_parser", "parser": "get_parser",
"help": "Run wptserve server for WAVE", "help": "Run wptserve server for WAVE",
"virtualenv": true, "virtualenv": true,
"install": ["ua-parser"],
"requirements": ["../wave/requirements.txt"] "requirements": ["../wave/requirements.txt"]
} }
} }
...@@ -242,6 +242,15 @@ class Window(object): ...@@ -242,6 +242,15 @@ class Window(object):
def __init__(self, session): def __init__(self, session):
self.session = session self.session = session
@command
def close(self):
handles = self.session.send_session_command("DELETE", "window")
if handles is not None and len(handles) == 0:
# With no more open top-level browsing contexts, the session is closed.
self.session.session_id = None
return handles
@property @property
@command @command
def rect(self): def rect(self):
...@@ -548,6 +557,13 @@ class Session(object): ...@@ -548,6 +557,13 @@ class Session(object):
def source(self): def source(self):
return self.send_session_command("GET", "source") return self.send_session_command("GET", "source")
@command
def new_window(self, type_hint=None):
body = {"type": type_hint}
value = self.send_session_command("POST", "window/new", body)
return value["handle"]
@property @property
@command @command
def window_handle(self): def window_handle(self):
...@@ -569,15 +585,6 @@ class Session(object): ...@@ -569,15 +585,6 @@ class Session(object):
return self.send_session_command("POST", url, body) return self.send_session_command("POST", url, body)
@command
def close(self):
handles = self.send_session_command("DELETE", "window")
if handles is not None and len(handles) == 0:
# With no more open top-level browsing contexts, the session is closed.
self.session_id = None
return handles
@property @property
@command @command
def handles(self): def handles(self):
......
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
"help": "Run tests in a browser", "help": "Run tests in a browser",
"virtualenv": true, "virtualenv": true,
"install": [ "install": [
"requests",
"zstandard" "zstandard"
], ],
"requirements": [ "requirements": [
...@@ -25,9 +24,6 @@ ...@@ -25,9 +24,6 @@
"parser": "create_parser_update", "parser": "create_parser_update",
"help": "Update expectations files from raw logs.", "help": "Update expectations files from raw logs.",
"virtualenv": true, "virtualenv": true,
"install": [
"requests"
],
"requirements": [ "requirements": [
"../wptrunner/requirements.txt" "../wptrunner/requirements.txt"
] ]
...@@ -51,6 +47,7 @@ ...@@ -51,6 +47,7 @@
"script": "run", "script": "run",
"parser": "get_parser", "parser": "get_parser",
"help": "Install browser components", "help": "Install browser components",
"virtualenv": true,
"install": [ "install": [
"mozinstall" "mozinstall"
] ]
......
...@@ -38,6 +38,8 @@ def load_commands(): ...@@ -38,6 +38,8 @@ def load_commands():
"requirements": [os.path.join(base_dir, item) "requirements": [os.path.join(base_dir, item)
for item in props.get("requirements", [])] for item in props.get("requirements", [])]
} }
if rv[command]["install"] or rv[command]["requirements"]:
assert rv[command]["virtualenv"]
return rv return rv
......
...@@ -77,157 +77,6 @@ crbug.com/1020018 [ Linux ] external/wpt/webdriver/tests/get_active_element/get. ...@@ -77,157 +77,6 @@ crbug.com/1020018 [ Linux ] external/wpt/webdriver/tests/get_active_element/get.
crbug.com/1020018 [ Linux ] external/wpt/webdriver/tests/get_active_element/get.py>>test_sucess_input_non_interactable [ Failure ] crbug.com/1020018 [ Linux ] external/wpt/webdriver/tests/get_active_element/get.py>>test_sucess_input_non_interactable [ Failure ]
# ====== New tests from wpt-importer added here ====== # ====== New tests from wpt-importer added here ======
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_ignore[capabilities0-confirm] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/take_screenshot/screenshot.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_dismiss_and_notify[capabilities0-confirm-False] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/release_actions/release.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/perform_actions/key_modifiers.py>>test_shift_modifier_generates_capital_letters[\ue050] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/navigate_to/navigate.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/forward.py>>test_no_browsing_history [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_accept[capabilities0-prompt] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_dismiss[capabilities0-alert] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/add_cookie/add.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/refresh/refresh.py>>test_dismissed_beforeunload [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_default[confirm-False] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/is_element_selected/selected.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/close.py>>test_close_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/switch_to_window/switch.py>>test_null_response_value [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_ignore[capabilities0-prompt] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/user_prompts.py>>test_accept[capabilities0-alert-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/execute_script/execute.py>>test_abort_by_user_prompt[confirm] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/perform_actions/none.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_accept[capabilities0-alert] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_ignore[capabilities0-confirm] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_accept_and_notify[capabilities0-alert-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_accept_and_notify[capabilities0-confirm-True] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/refresh/refresh.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/delete_all_cookies/delete.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_ignore[capabilities0-alert] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_dismiss_and_notify[capabilities0-prompt-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/execute_script/execute.py>>test_abort_by_user_prompt_twice[confirm] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_default[alert-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/print/printcmd.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/user_prompts.py>>test_dismiss[capabilities0-alert-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/execute_script/execute.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_dismiss[capabilities0-prompt] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/execute_async_script/execute_async.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/forward.py>>test_null_response_value [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_dismiss[capabilities0-alert] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/user_prompts.py>>test_accept[capabilities0-confirm-True] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/take_element_screenshot/screenshot.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/accept_alert/accept.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/forward.py>>test_history_pushstate [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/fullscreen_window/fullscreen.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/forward.py>>test_fragments [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/new_window.py>>test_new_window_sets_no_window_name [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_dismiss[capabilities0-confirm] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_ignore[capabilities0-prompt] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/back.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_element_property/get.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/permissions/set.py>>test_set_to_state_cross_realm[capabilities0-realmSetting0-prompt] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/permissions/set.py>>test_set_to_state_cross_realm[capabilities0-realmSetting1-granted] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/close.py>>test_close_browsing_context_with_dismissed_beforeunload_prompt [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_accept[capabilities0-alert] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_element_tag_name/get.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/new.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_default[prompt-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/refresh/refresh.py>>test_history_pushstate [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/back.py>>test_data_urls [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_accept[capabilities0-confirm] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/set_window_rect/set.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/execute_script/execute.py>>test_abort_by_user_prompt[prompt] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/permissions/set.py>>test_set_to_state_cross_realm[capabilities0-realmSetting0-denied] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/is_element_enabled/enabled.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_window_rect/get.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/delete_cookie/delete.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/execute_script/execute.py>>test_abort_by_user_prompt_twice[alert] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_accept_and_notify[capabilities0-alert-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_accept_and_notify[capabilities0-prompt-] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_dismiss[capabilities0-alert] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_dismiss[capabilities0-prompt] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/new_window.py>>test_new_window_opens_about_blank [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/refresh/refresh.py>>test_refresh_switches_to_parent_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_element_css_value/get.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/maximize_window/maximize.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/element_send_keys/send_keys.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/back.py>>test_no_browsing_history [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_accept[capabilities0-prompt] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_element_attribute/get.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_dismiss_and_notify[capabilities0-confirm-False] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/perform_actions/key_modifiers.py>>test_shift_modifier_generates_capital_letters[\ue008] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/execute_script/execute.py>>test_ending_comment [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_window_handle/get.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_element_rect/get.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/execute_script/execute.py>>test_null_parameter_value [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_accept_and_notify[capabilities0-confirm-True] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/permissions/set.py>>test_set_to_state_cross_realm[capabilities0-realmSetting1-prompt] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/switch_to_frame/switch.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/new.py>>test_type_with_null_value [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/new_tab.py>>test_new_tab [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_dismiss_and_notify[capabilities0-confirm-False] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/perform_actions/key.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/back.py>>test_fragments [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_accept_and_notify[capabilities0-prompt-] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_accept[capabilities0-prompt] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/forward.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_dismiss_and_notify[capabilities0-prompt-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_element_text/get.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/user_prompts.py>>test_dismiss[capabilities0-confirm-False] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_accept[capabilities0-confirm] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/refresh/refresh.py>>test_basic [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_dismiss[capabilities0-confirm] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/execute_script/execute.py>>test_override_listeners [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/switch_to_parent_frame/switch.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_ignore[capabilities0-alert] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/new.py>>test_type_with_unknown_value [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/minimize_window/minimize.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_ignore[capabilities0-prompt] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_active_element/get.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_page_source/source.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/back.py>>test_history_pushstate [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_accept_and_notify[capabilities0-confirm-True] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/back.py>>test_null_response_value [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_default[prompt-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/permissions/set.py>>test_set_to_state_cross_realm[capabilities0-realmSetting0-granted] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/perform_actions/key_modifiers.py>>test_shift_modifier_and_non_printable_keys[\ue008] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/user_prompts.py>>test_dismiss[capabilities0-prompt-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/user_prompts.py>>test_accept[capabilities0-prompt-] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_current_url/get.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_window_handles/get.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_dismiss_and_notify[capabilities0-prompt-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_dismiss_and_notify[capabilities0-alert-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_alert_text/get.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_default[confirm-False] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_default[prompt-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_named_cookie/get.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_default[confirm-False] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_accept_and_notify[capabilities0-prompt-] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/permissions/set.py>>test_set_to_state_cross_realm[capabilities0-realmSetting1-denied] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/perform_actions/pointer.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/close.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_title/get.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/execute_script/execute.py>>test_abort_by_user_prompt[alert] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/forward.py>>test_dismissed_beforeunload [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/new_tab.py>>test_new_tab_sets_no_opener [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/back.py>>test_dismissed_beforeunload [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/forward.py>>test_data_urls [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_ignore[capabilities0-confirm] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_dismiss[capabilities0-prompt] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/new_tab.py>>test_new_tab_opens_about_blank [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/execute_script/execute.py>>test_abort_by_user_prompt_twice[prompt] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_dismiss_and_notify[capabilities0-alert-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/new_window.py>>test_type_with_window [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_accept[capabilities0-confirm] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/forward/user_prompts.py>>test_dismiss_and_notify[capabilities0-alert-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/refresh/refresh.py>>test_null_response_value [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_default[alert-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/dismiss_alert/dismiss.py>>test_no_browsing_context [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/new_window.py>>test_new_window_sets_no_opener [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_window_handles/get.py>>test_multiple_windows [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/perform_actions/key_modifiers.py>>test_shift_modifier_and_non_printable_keys[\ue050] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/close_window/user_prompts.py>>test_accept_and_notify[capabilities0-alert-None] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/new_window/new_tab.py>>test_new_tab_sets_no_window_name [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/back/user_prompts.py>>test_dismiss[capabilities0-confirm] [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/perform_actions/pointer_tripleclick.py>>test_tripleclick_at_coordinates [ Failure ] crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/perform_actions/pointer_tripleclick.py>>test_tripleclick_at_coordinates [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/minimize_window/minimize.py>>test_fully_exit_fullscreen [ Failure ] crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/minimize_window/minimize.py>>test_fully_exit_fullscreen [ Failure ]
crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_named_cookie/get.py>>test_duplicated_cookie [ Failure ] crbug.com/626703 [ Linux ] external/wpt/webdriver/tests/get_named_cookie/get.py>>test_duplicated_cookie [ Failure ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment