Closed
Bug 1867038
Opened 2 years ago
Closed 1 year ago
Intermittent /webdriver/tests/bidi/browsing_context/user_prompt_closed/user_prompt_closed.py | single tracking bug
Categories
(Remote Protocol :: WebDriver BiDi, defect, P5)
Remote Protocol
WebDriver BiDi
Tracking
(Not tracked)
RESOLVED
INCOMPLETE
People
(Reporter: intermittent-bug-filer, Unassigned)
Details
(Keywords: intermittent-failure, intermittent-testcase)
Attachments
(1 obsolete file)
Filed by: sstanca [at] mozilla.com
Parsed log: https://treeherder.mozilla.org/logviewer?job_id=437947627&repo=mozilla-central
Full log: https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/OwNgROizQ3qEq-BZEb__cw/runs/0/artifacts/public/logs/live_backing.log
[task 2023-11-28T11:48:47.854Z] 11:48:47 INFO - TEST-PASS | /webdriver/tests/bidi/browsing_context/user_prompt_closed/user_prompt_closed.py | test_subscribe_with_prompt_with_defaults
[task 2023-11-28T11:48:47.854Z] 11:48:47 INFO - TEST-UNEXPECTED-FAIL | /webdriver/tests/bidi/browsing_context/user_prompt_closed/user_prompt_closed.py | test_subscribe_to_one_context[tab] - asyncio.exceptions.CancelledError
[task 2023-11-28T11:48:47.855Z] 11:48:47 INFO - fut = <Future cancelled>, timeout = 8.0
[task 2023-11-28T11:48:47.855Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.855Z] 11:48:47 INFO - async def wait_for(fut, timeout, *, loop=None):
[task 2023-11-28T11:48:47.855Z] 11:48:47 INFO - """Wait for the single Future or coroutine to complete, with timeout.
[task 2023-11-28T11:48:47.855Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.855Z] 11:48:47 INFO - Coroutine will be wrapped in Task.
[task 2023-11-28T11:48:47.855Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.855Z] 11:48:47 INFO - Returns result of the Future or coroutine. When a timeout occurs,
[task 2023-11-28T11:48:47.855Z] 11:48:47 INFO - it cancels the task and raises TimeoutError. To avoid the task
[task 2023-11-28T11:48:47.855Z] 11:48:47 INFO - cancellation, wrap it in shield().
[task 2023-11-28T11:48:47.855Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.855Z] 11:48:47 INFO - If the wait is cancelled, the task is also cancelled.
[task 2023-11-28T11:48:47.855Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.855Z] 11:48:47 INFO - This function is a coroutine.
[task 2023-11-28T11:48:47.855Z] 11:48:47 INFO - """
[task 2023-11-28T11:48:47.856Z] 11:48:47 INFO - if loop is None:
[task 2023-11-28T11:48:47.856Z] 11:48:47 INFO - loop = events.get_running_loop()
[task 2023-11-28T11:48:47.856Z] 11:48:47 INFO - else:
[task 2023-11-28T11:48:47.856Z] 11:48:47 INFO - warnings.warn("The loop argument is deprecated since Python 3.8, "
[task 2023-11-28T11:48:47.856Z] 11:48:47 INFO - "and scheduled for removal in Python 3.10.",
[task 2023-11-28T11:48:47.856Z] 11:48:47 INFO - DeprecationWarning, stacklevel=2)
[task 2023-11-28T11:48:47.856Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.856Z] 11:48:47 INFO - if timeout is None:
[task 2023-11-28T11:48:47.856Z] 11:48:47 INFO - return await fut
[task 2023-11-28T11:48:47.856Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.856Z] 11:48:47 INFO - if timeout <= 0:
[task 2023-11-28T11:48:47.856Z] 11:48:47 INFO - fut = ensure_future(fut, loop=loop)
[task 2023-11-28T11:48:47.856Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.856Z] 11:48:47 INFO - if fut.done():
[task 2023-11-28T11:48:47.856Z] 11:48:47 INFO - return fut.result()
[task 2023-11-28T11:48:47.857Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.857Z] 11:48:47 INFO - await _cancel_and_wait(fut, loop=loop)
[task 2023-11-28T11:48:47.857Z] 11:48:47 INFO - try:
[task 2023-11-28T11:48:47.857Z] 11:48:47 INFO - return fut.result()
[task 2023-11-28T11:48:47.857Z] 11:48:47 INFO - except exceptions.CancelledError as exc:
[task 2023-11-28T11:48:47.857Z] 11:48:47 INFO - raise exceptions.TimeoutError() from exc
task 2023-11-28T11:48:47.857Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.857Z] 11:48:47 INFO - waiter = loop.create_future()
[task 2023-11-28T11:48:47.857Z] 11:48:47 INFO - timeout_handle = loop.call_later(timeout, _release_waiter, waiter)
[task 2023-11-28T11:48:47.857Z] 11:48:47 INFO - cb = functools.partial(_release_waiter, waiter)
[task 2023-11-28T11:48:47.857Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.857Z] 11:48:47 INFO - fut = ensure_future(fut, loop=loop)
[task 2023-11-28T11:48:47.857Z] 11:48:47 INFO - fut.add_done_callback(cb)
[task 2023-11-28T11:48:47.857Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.857Z] 11:48:47 INFO - try:
[task 2023-11-28T11:48:47.858Z] 11:48:47 INFO - # wait until the future completes or the timeout
[task 2023-11-28T11:48:47.858Z] 11:48:47 INFO - try:
[task 2023-11-28T11:48:47.858Z] 11:48:47 INFO - await waiter
[task 2023-11-28T11:48:47.858Z] 11:48:47 INFO - except exceptions.CancelledError:
[task 2023-11-28T11:48:47.858Z] 11:48:47 INFO - if fut.done():
[task 2023-11-28T11:48:47.858Z] 11:48:47 INFO - return fut.result()
[task 2023-11-28T11:48:47.858Z] 11:48:47 INFO - else:
[task 2023-11-28T11:48:47.858Z] 11:48:47 INFO - fut.remove_done_callback(cb)
[task 2023-11-28T11:48:47.858Z] 11:48:47 INFO - # We must ensure that the task is not running
[task 2023-11-28T11:48:47.858Z] 11:48:47 INFO - # after wait_for() returns.
[task 2023-11-28T11:48:47.858Z] 11:48:47 INFO - # See https://bugs.python.org/issue32751
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO - await _cancel_and_wait(fut, loop=loop)
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO - raise
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO - if fut.done():
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO - return fut.result()
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO - else:
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO - fut.remove_done_callback(cb)
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO - # We must ensure that the task is not running
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO - # after wait_for() returns.
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO - # See https://bugs.python.org/issue32751
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO - await _cancel_and_wait(fut, loop=loop)
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO - # In case task cancellation failed with some
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO - # exception, we should re-raise it
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO - # See https://bugs.python.org/issue40607
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO - try:
[task 2023-11-28T11:48:47.859Z] 11:48:47 INFO - > return fut.result()
[task 2023-11-28T11:48:47.860Z] 11:48:47 INFO - E asyncio.exceptions.CancelledError
[task 2023-11-28T11:48:47.860Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.860Z] 11:48:47 INFO - cb = functools.partial(<function _release_waiter at 0x000001807E40B700>, <Future finished result=None>)
[task 2023-11-28T11:48:47.860Z] 11:48:47 INFO - fut = <Future cancelled>
[task 2023-11-28T11:48:47.860Z] 11:48:47 INFO - loop = <ProactorEventLoop running=False closed=False debug=False>
[task 2023-11-28T11:48:47.860Z] 11:48:47 INFO - timeout = 8.0
[task 2023-11-28T11:48:47.860Z] 11:48:47 INFO - timeout_handle = <TimerHandle cancelled when=992.937>
[task 2023-11-28T11:48:47.860Z] 11:48:47 INFO - waiter = <Future finished result=None>
[task 2023-11-28T11:48:47.860Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.861Z] 11:48:47 INFO - c:\mozilla-build\python3\lib\asyncio\tasks.py:490: CancelledError
[task 2023-11-28T11:48:47.861Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.861Z] 11:48:47 INFO - The above exception was the direct cause of the following exception:
[task 2023-11-28T11:48:47.861Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.861Z] 11:48:47 INFO - future = <Future pending>, timeout = 2.0
[task 2023-11-28T11:48:47.861Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.861Z] 11:48:47 INFO - async def wait_for_future_safe(future: Coroutine, timeout: float = 2.0):
[task 2023-11-28T11:48:47.861Z] 11:48:47 INFO - try:
[task 2023-11-28T11:48:47.861Z] 11:48:47 INFO - > return await asyncio.wait_for(
[task 2023-11-28T11:48:47.861Z] 11:48:47 INFO - asyncio.shield(future),
[task 2023-11-28T11:48:47.861Z] 11:48:47 INFO - timeout=timeout * configuration["timeout_multiplier"],
[task 2023-11-28T11:48:47.861Z] 11:48:47 INFO - )
[task 2023-11-28T11:48:47.862Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.862Z] 11:48:47 INFO - configuration = {'browser': {'args': ['--profile',
[task 2023-11-28T11:48:47.862Z] 11:48:47 INFO - 'C:\\Users\\task_170117109225324\\AppData\\Local\\Temp\\tmp2bzj2b2y.mozrunner'],
[task 2023-11-28T11:48:47.862Z] 11:48:47 INFO - 'binary': 'Z:\\task_170117109225324\\build\\application\\firefox\\firefox.exe',
[task 2023-11-28T11:48:47.862Z] 11:48:47 INFO - 'env': {'ALLUSERSPROFILE': 'C:\\ProgramData',
[task 2023-11-28T11:48:47.862Z] 11:48:47 INFO - 'APPDATA': 'Z:\\task_170117109225324\\AppData\\Roaming',
[task 2023-11-28T11:48:47.862Z] 11:48:47 INFO - 'COMMONPROGRAMFILES': 'C:\\Program Files\\Common Files',
[task 2023-11-28T11:48:47.862Z] 11:48:47 INFO - 'COMMONPROGRAMFILES(X86)': 'C:\\Program Files '
[task 2023-11-28T11:48:47.862Z] 11:48:47 INFO - '(x86)\\Common Files',
[task 2023-11-28T11:48:47.862Z] 11:48:47 INFO - 'COMMONPROGRAMW6432': 'C:\\Program Files\\Common Files',
[task 2023-11-28T11:48:47.862Z] 11:48:47 INFO - 'COMPUTERNAME': 'VM-MWJXYVTROAGH',
[task 2023-11-28T11:48:47.862Z] 11:48:47 INFO - 'COMSPEC': 'C:\\Windows\\system32\\cmd.exe',
[task 2023-11-28T11:48:47.862Z] 11:48:47 INFO - 'DRIVERDATA': 'C:\\Windows\\System32\\Drivers\\DriverData',
[task 2023-11-28T11:48:47.862Z] 11:48:47 INFO - 'EXTRA_MOZHARNESS_CONFIG': '{"installer_url": '
[task 2023-11-28T11:48:47.862Z] 11:48:47 INFO - '"https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/dVTo953PR7S4xU8sJVvktA/artifacts/public/build/target.zip", '
[task 2023-11-28T11:48:47.863Z] 11:48:47 INFO - '"test_packages_url": '
[task 2023-11-28T11:48:47.863Z] 11:48:47 INFO - '"https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/dVTo953PR7S4xU8sJVvktA/artifacts/public/build/target.test_packages.json"}',
[task 2023-11-28T11:48:47.863Z] 11:48:47 INFO - 'GCOV_PREFIX': 'C:\\Users\\task_170117109225324\\AppData\\Local\\Temp\\tmpp_h_km7i',
[task 2023-11-28T11:48:47.863Z] 11:48:47 INFO - 'GCOV_PREFIX_STRIP': '4',
[task 2023-11-28T11:48:47.863Z] 11:48:47 INFO - 'GECKO_HEAD_REPOSITORY': 'https://hg.mozilla.org/mozilla-central',
[task 2023-11-28T11:48:47.863Z] 11:48:47 INFO - 'GECKO_HEAD_REV': 'df3ec72035f33e9b6bf2734f4d57532f3a81471f',
[task 2023-11-28T11:48:47.863Z] 11:48:47 INFO - 'GNOME_DISABLE_CRASH_DIALOG': '1',
[task 2023-11-28T11:48:47.863Z] 11:48:47 INFO - 'HG_CACHE': 'y:\\hg-cache',
[task 2023-11-28T11:48:47.863Z] 11:48:47 INFO - 'HOMEDRIVE': 'C:',
[task 2023-11-28T11:48:47.863Z] 11:48:47 INFO - 'HOMEPATH': '\\Users\\task_170117109225324',
[task 2023-11-28T11:48:47.863Z] 11:48:47 INFO - 'JS_CODE_COVERAGE_OUTPUT_DIR': 'C:\\Users\\task_170117109225324\\AppData\\Local\\Temp\\tmp9ves2o2i',
[task 2023-11-28T11:48:47.863Z] 11:48:47 INFO - 'LOCALAPPDATA': 'C:\\Users\\task_170117109225324\\AppData\\Local',
[task 2023-11-28T11:48:47.863Z] 11:48:47 INFO - 'LOGONSERVER': '\\\\VM-MWJXYVTROAGH',
[task 2023-11-28T11:48:47.863Z] 11:48:47 INFO - 'MINIDUMP_SAVE_PATH': 'Z:\\task_170117109225324\\build\\blobber_upload_dir',
[task 2023-11-28T11:48:47.863Z] 11:48:47 INFO - 'MOZHARNESS_TEST_PATHS': '{"web-platform-tests-wdspec": '
[task 2023-11-28T11:48:47.864Z] 11:48:47 INFO - '["/_mozilla/webdriver/bidi/browsing_context/create", '
[task 2023-11-28T11:48:47.864Z] 11:48:47 INFO - '"/_mozilla/webdriver/bidi/interface", '
[task 2023-11-28T11:48:47.864Z] 11:48:47 INFO - '"/_mozilla/webdriver/bidi/session/end", '
[task 2023-11-28T11:48:47.864Z] 11:48:47 INFO - '"/_mozilla/webdriver/classic/element_send_keys", '
[task 2023-11-28T11:48:47.864Z] 11:48:47 INFO - '"/_mozilla/webdriver/classic/new_session", '
[task 2023-11-28T11:48:47.864Z] 11:48:47 INFO - '"/_mozilla/webdriver/harness", '
[task 2023-11-28T11:48:47.864Z] 11:48:47 INFO - '"/webdriver/tests/bidi/browsing_context/classic_interop", '
[task 2023-11-28T11:48:47.864Z] 11:48:47 INFO - '"/webdriver/tests/bidi/browsing_context/create", '
[task 2023-11-28T11:48:47.864Z] 11:48:47 INFO - '"/webdriver/tests/bidi/browsing_context/handle_user_prompt", '
[task 2023-11-28T11:48:47.864Z] 11:48:47 INFO - '"/webdriver/tests/bidi/browsing_context/print", '
[task 2023-11-28T11:48:47.864Z] 11:48:47 INFO - '"/webdriver/tests/bidi/browsing_context/user_prompt_closed", '
[task 2023-11-28T11:48:47.864Z] 11:48:47 INFO - '"/webdriver/tests/bidi/input/release_actions", '
[task 2023-11-28T11:48:47.864Z] 11:48:47 INFO - '"/webdriver/tests/bidi/network/before_request_sent", '
[task 2023-11-28T11:48:47.865Z] 11:48:47 INFO - '"/webdriver/tests/bidi/network/response_completed", '
[task 2023-11-28T11:48:47.865Z] 11:48:47 INFO - '"/webdriver/tests/bidi/script/classic_interop", '
[task 2023-11-28T11:48:47.865Z] 11:48:47 INFO - '"/webdriver/tests/bidi/script/message", '
[task 2023-11-28T11:48:47.865Z] 11:48:47 INFO - '"/webdriver/tests/bidi/session/new", '
[task 2023-11-28T11:48:47.865Z] 11:48:47 INFO - '"/webdriver/tests/classic/accept_alert", '
[task 2023-11-28T11:48:47.865Z] 11:48:47 INFO - '"/webdriver/tests/classic/delete_all_cookies", '
[task 2023-11-28T11:48:47.865Z] 11:48:47 INFO - '"/webdriver/tests/classic/element_clear", '
[task 2023-11-28T11:48:47.865Z] 11:48:47 INFO - '"/webdriver/tests/classic/execute_script", '
[task 2023-11-28T11:48:47.865Z] 11:48:47 INFO - '"/webdriver/tests/classic/find_elements", '
[task 2023-11-28T11:48:47.865Z] 11:48:47 INFO - '"/webdriver/tests/classic/fullscreen_window", '
[task 2023-11-28T11:48:47.865Z] 11:48:47 INFO - '"/webdriver/tests/classic/get_computed_role", '
[task 2023-11-28T11:48:47.865Z] 11:48:47 INFO - '"/webdriver/tests/classic/get_element_property", '
[task 2023-11-28T11:48:47.865Z] 11:48:47 INFO - '"/webdriver/tests/classic/get_element_text", '
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - '"/webdriver/tests/classic/get_title", '
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - '"/webdriver/tests/classic/interface", '
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - '"/webdriver/tests/classic/minimize_window", '
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - '"/webdriver/tests/classic/perform_actions", '
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - '"/webdriver/tests/classic/release_actions", '
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - '"/webdriver/tests/classic/status", '
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - '"/webdriver/tests/classic/take_element_screenshot"]}',
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - 'MOZILLABUILD': 'C:\\mozilla-build',
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - 'MOZ_AUTOMATION': '1',
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - 'MOZ_CRASHREPORTER': '1',
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - 'MOZ_CRASHREPORTER_NO_REPORT': '1',
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - 'MOZ_CRASHREPORTER_SHUTDOWN': '1',
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - 'MOZ_DEVELOPER_OBJ_DIR': 'D:/task_170116717290937/workspace/obj-build',
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - 'MOZ_DEVELOPER_REPO_DIR': 'D:/task_170116717290937/build/src',
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - 'MOZ_DISABLE_NONLOCAL_CONNECTIONS': '1',
[task 2023-11-28T11:48:47.866Z] 11:48:47 INFO - 'MOZ_FETCHES': '[{"artifact": '
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - '"public/build/fix-stacks.tar.zst", '
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - '"extract": true, "task": '
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - '"ZbdT9tpDTgiJQTOZlbpi1A"}, {"artifact": '
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - '"public/build/geckodriver.zip", '
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - '"extract": true, "task": '
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - '"WhKx5sRoSEije3nh_jkXmQ"}, {"artifact": '
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - '"public/build/grcov.tar.zst", "extract": '
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - 'true, "task": "TpoJkgaJQzir5E8rHnc8Yw"}, '
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - '{"artifact": '
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - '"public/build/minidump-stackwalk.tar.zst", '
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - '"extract": true, "task": '
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - '"WZHPKyz8Su2TBQfEw4Ko5w"}, {"artifact": '
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - '"public/build/target.mozinfo.json", '
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - '"extract": true, "task": '
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - '"dVTo953PR7S4xU8sJVvktA"}]',
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - 'MOZ_FETCHES_DIR': 'Z:/task_170117109225324/fetches',
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - 'MOZ_LOG': 'signaling:3,mtransport:4,DataChannel:4,jsep:4',
[task 2023-11-28T11:48:47.867Z] 11:48:47 INFO - 'MOZ_SCM_LEVEL': '3',
[task 2023-11-28T11:48:47.868Z] 11:48:47 INFO - 'MOZ_WINDOW_OCCLUSION': '0',
[task 2023-11-28T11:48:47.868Z] 11:48:47 INFO - 'NSS_MAX_MP_PBE_ITERATION_COUNT': '10',
[task 2023-11-28T11:48:47.868Z] 11:48:47 INFO - 'NUMBER_OF_PROCESSORS': '8',
[task 2023-11-28T11:48:47.868Z] 11:48:47 INFO - 'OS': 'Windows_NT',
[task 2023-11-28T11:48:47.868Z] 11:48:47 INFO - 'PATH': 'Z:\\task_170117109225324\\build\\venv\\Scripts;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\Program '
[task 2023-11-28T11:48:47.868Z] 11:48:47 INFO - 'Files\\Git\\cmd;C:\\Program Files\\Puppet '
[task 2023-11-28T11:48:47.868Z] 11:48:47 INFO - 'Labs\\Puppet\\bin;C:\\Program Files '
[task 2023-11-28T11:48:47.868Z] 11:48:47 INFO - '(x86)\\Windows Kits\\10\\Windows Performance '
[task 2023-11-28T11:48:47.868Z] 11:48:47 INFO - 'Toolkit\\;C:\\Program Files '
<...>
[task 2023-11-28T11:48:47.912Z] 11:48:47 INFO - 'VIRTUAL_ENV': 'venv',
[task 2023-11-28T11:48:47.912Z] 11:48:47 INFO - 'WINDIR': 'C:\\Windows',
[task 2023-11-28T11:48:47.912Z] 11:48:47 INFO - 'WPT_STASH_CONFIG': '["\\\\\\\\.\\\\pipe\\\\pyc-9284-0-9j9sm0de", '
[task 2023-11-28T11:48:47.912Z] 11:48:47 INFO - '"BvU0l5tWfbokS3j0gd0sSbQdZI4j2TNj5ShMImk1NIU="]',
[task 2023-11-28T11:48:47.912Z] 11:48:47 INFO - 'XRE_NO_WINDOWS_CRASH_DIALOG': '1'}}},
[task 2023-11-28T11:48:47.912Z] 11:48:47 INFO - 'host': '127.0.0.1',
[task 2023-11-28T11:48:47.912Z] 11:48:47 INFO - 'port': 54263,
[task 2023-11-28T11:48:47.912Z] 11:48:47 INFO - 'timeout_multiplier': 4,
[task 2023-11-28T11:48:47.912Z] 11:48:47 INFO - 'webdriver': {'args': ['-vv',
[task 2023-11-28T11:48:47.912Z] 11:48:47 INFO - '--binary',
[task 2023-11-28T11:48:47.912Z] 11:48:47 INFO - 'Z:\\task_170117109225324\\build\\application\\firefox\\firefox.exe'],
[task 2023-11-28T11:48:47.912Z] 11:48:47 INFO - 'binary': 'Z:\\task_170117109225324\\fetches\\geckodriver.exe'}}
[task 2023-11-28T11:48:47.912Z] 11:48:47 INFO - future = <Future pending>
[task 2023-11-28T11:48:47.912Z] 11:48:47 INFO - timeout = 2.0
[task 2023-11-28T11:48:47.912Z] 11:48:47 INFO -
[task 2023-11-28T11:48:47.913Z] 11:48:47 INFO - tests\web-platform\tests\webdriver\tests\support\fixtures_bidi.py:118: TimeoutException
[task 2023-11-28T11:48:47.913Z] 11:48:47 INFO - ..
[task 2023-11-28T11:48:47.913Z] 11:48:47 INFO - TEST-OK | /webdriver/tests/bidi/browsing_context/user_prompt_closed/user_prompt_closed.py | took 49597ms
| Comment hidden (Intermittent Failures Robot) |
Comment 2•2 years ago
|
||
Tier 1 failure here
Summary: Intermittent [tier 2] /webdriver/tests/bidi/browsing_context/user_prompt_closed/user_prompt_closed.py | single tracking bug → Intermittent /webdriver/tests/bidi/browsing_context/user_prompt_closed/user_prompt_closed.py | single tracking bug
| Comment hidden (Intermittent Failures Robot) |
| Comment hidden (Intermittent Failures Robot) |
| Comment hidden (Intermittent Failures Robot) |
| Comment hidden (Intermittent Failures Robot) |
| Comment hidden (Intermittent Failures Robot) |
| Comment hidden (Intermittent Failures Robot) |
| Comment hidden (Intermittent Failures Robot) |
| Comment hidden (Intermittent Failures Robot) |
Updated•2 years ago
|
Attachment #9384017 -
Attachment is obsolete: true
| Comment hidden (Intermittent Failures Robot) |
| Comment hidden (Intermittent Failures Robot) |
| Comment hidden (Intermittent Failures Robot) |
Comment 15•2 years ago
|
||
https://wiki.mozilla.org/Bug_Triage#Intermittent_Test_Failure_Cleanup
For more information, please visit BugBot documentation.
Status: NEW → RESOLVED
Closed: 2 years ago
Resolution: --- → INCOMPLETE
| Reporter | ||
Comment 16•1 year ago
|
||
| treeherder | ||
New failure instance: https://treeherder.mozilla.org/logviewer?job_id=458961195&repo=mozilla-central
Status: RESOLVED → REOPENED
Resolution: INCOMPLETE → ---
Comment 17•1 year ago
|
||
(In reply to Treeherder Bug Filer from comment #16)
New failure instance: https://treeherder.mozilla.org/logviewer?job_id=458961195&repo=mozilla-central
This is bug 1774392.
Status: REOPENED → RESOLVED
Closed: 2 years ago → 1 year ago
Resolution: --- → INCOMPLETE
| Comment hidden (Intermittent Failures Robot) |
| Comment hidden (Intermittent Failures Robot) |
You need to log in
before you can comment on or make changes to this bug.
Description
•