Skip to content

Conversation

@titusfortner
Copy link
Member

@titusfortner titusfortner commented Apr 28, 2025

User description

🔗 Related Issues

Fixes #14622

💥 What does this PR do?

  • Logs note when status or exitstatus is nil
  • Uses result if one exists
  • Added tests

🔧 Implementation Notes

Decided to log note (at info level) instead of just handling the nil so if it errors the user gets additional understanding, and if it doesn't error it still notes that the code is going through an unexpected process.

💡 Additional Considerations

None

🔄 Types of changes

  • Bug fix (backwards compatible)

PR Type

Bug fix, Tests


Description

  • Refactored Selenium Manager command execution and error handling

    • Extracted command execution, result parsing, and validation into separate methods
    • Improved logging for nil or invalid process exit statuses
    • Now uses result if present, even if exit status is nil
  • Added and updated unit tests for new error handling logic

    • Tests for nil exit status with present result
    • Tests for nil result with successful exit status

Changes walkthrough 📝

Relevant files
Bug fix
selenium_manager.rb
Refactor and improve Selenium Manager command error handling

rb/lib/selenium/webdriver/common/selenium_manager.rb

  • Refactored command execution into helper methods
  • Improved handling and logging for nil exit statuses
  • Enhanced error reporting and result validation
  • +35/-17 
    Tests
    selenium_manager_spec.rb
    Add tests for improved Selenium Manager error handling     

    rb/spec/unit/selenium/webdriver/common/selenium_manager_spec.rb

  • Added tests for nil exit status and result handling
  • Verified logging and error raising for new scenarios
  • +23/-0   

    Need help?
  • Type /help how to ... in the comments thread for any questions about Qodo Merge usage.
  • Check out the documentation for more information.
  • @selenium-ci selenium-ci added the C-rb Ruby Bindings label Apr 28, 2025
    @qodo-merge-pro
    Copy link
    Contributor

    PR Reviewer Guide 🔍

    Here are some key observations to aid the review process:

    🎫 Ticket compliance analysis ❌

    1234 - Not compliant

    Non-compliant requirements:

    • Fix issue where Selenium 2.48 doesn't trigger JavaScript in link's href on click() in Firefox 42.0

    5678 - Not compliant

    Non-compliant requirements:

    • Fix "Error: ConnectFailure (Connection refused)" when instantiating ChromeDriver after the first instance

    ⏱️ Estimated effort to review: 2 🔵🔵⚪⚪⚪
    🧪 PR contains tests
    🔒 No security concerns identified
    ⚡ Recommended focus areas for review

    Error Message Clarity

    The error message in validate_command_result includes status&.exitstatus which could display as nil in error messages. Consider providing a more descriptive message when exitstatus is nil.

    raise Error::WebDriverError, "Unsuccessful command executed: #{command} - Code #{status&.exitstatus}\n#{result}\n#{stderr}"
    Log Message Wording

    The log message for nil status could be clearer. "Invalid process exit status" might be confusing - consider "Nil process exit status detected" for more precision.

    WebDriver.logger.info("Invalid process exit status for: #{command}. Assuming success if result is present.", id: :selenium_manager)
    @qodo-merge-pro
    Copy link
    Contributor

    qodo-merge-pro bot commented Apr 28, 2025

    PR Code Suggestions ✨

    Explore these optional code suggestions:

    CategorySuggestion                                                                                                                                    Impact
    Possible issue
    Fix inconsistent log message
    Suggestion Impact:The commit changed the log message to address the inconsistency, but used different wording ('No exit status') than what was suggested ('No valid process exit status')

    code diff:

    - WebDriver.logger.info("Invalid process exit status for: #{command}. Assuming success if result is present.", + WebDriver.logger.info("No exit status for: #{command}. Assuming success if result is present.", id: :selenium_manager)

    The log message doesn't match the test expectation. The test expects a message
    containing "No valid process exit status" but the actual message uses "Invalid
    process exit status". Update the log message to match the test expectation.

    rb/lib/selenium/webdriver/common/selenium_manager.rb [108-118]

     def validate_command_result(command, status, result, stderr) if status.nil? || status.exitstatus.nil? - WebDriver.logger.info("Invalid process exit status for: #{command}. Assuming success if result is present.", + WebDriver.logger.info("No valid process exit status for: #{command}. Assuming success if result is present.", id: :selenium_manager) end return unless status&.exitstatus&.positive? || result.nil? raise Error::WebDriverError, "Unsuccessful command executed: #{command} - Code #{status&.exitstatus}\n#{result}\n#{stderr}" end

    [Suggestion has been applied]

    Suggestion importance[1-10]: 6

    __

    Why: The suggestion correctly identifies a mismatch between the log message in the validate_command_result method and the expectation in the corresponding new test in selenium_manager_spec.rb. Applying the fix ensures the test passes and maintains consistency.

    Low
    • Update
    @qodo-merge-pro
    Copy link
    Contributor

    qodo-merge-pro bot commented Apr 28, 2025

    CI Feedback 🧐

    (Feedback updated until commit 67bdb18)

    A test triggered by this PR failed. Here is an AI-generated analysis of the failure:

    Action: Test / All RBE tests

    Failed stage: Run Bazel [❌]

    Failure summary:

    The action failed because the repository couldn't download a required dependency. Specifically, the
    error occurred when trying to download zlib from GitHub:

  • Error downloading [https://github.com/madler/zlib/releases/download/v1.3.1/zlib-1.3.1.tar.gz]
  • The HTTP request returned "400 Bad Request"
  • This failure happened during the Bazel build process when trying to fetch the zlib repository
  • The error is shown in lines 1806-1815 of the log

    This dependency failure caused the analysis of numerous targets to fail, as shown by the many
    "errors encountered while analyzing target" warnings that followed.

  • Relevant error logs:
    1: ##[group]Operating System 2: Ubuntu ... 945: Package 'php-sql-formatter' is not installed, so not removed 946: Package 'php8.3-ssh2' is not installed, so not removed 947: Package 'php-ssh2-all-dev' is not installed, so not removed 948: Package 'php8.3-stomp' is not installed, so not removed 949: Package 'php-stomp-all-dev' is not installed, so not removed 950: Package 'php-swiftmailer' is not installed, so not removed 951: Package 'php-symfony' is not installed, so not removed 952: Package 'php-symfony-asset' is not installed, so not removed 953: Package 'php-symfony-asset-mapper' is not installed, so not removed 954: Package 'php-symfony-browser-kit' is not installed, so not removed 955: Package 'php-symfony-clock' is not installed, so not removed 956: Package 'php-symfony-debug-bundle' is not installed, so not removed 957: Package 'php-symfony-doctrine-bridge' is not installed, so not removed 958: Package 'php-symfony-dom-crawler' is not installed, so not removed 959: Package 'php-symfony-dotenv' is not installed, so not removed 960: Package 'php-symfony-error-handler' is not installed, so not removed 961: Package 'php-symfony-event-dispatcher' is not installed, so not removed ... 1139: Package 'php-twig-html-extra' is not installed, so not removed 1140: Package 'php-twig-i18n-extension' is not installed, so not removed 1141: Package 'php-twig-inky-extra' is not installed, so not removed 1142: Package 'php-twig-intl-extra' is not installed, so not removed 1143: Package 'php-twig-markdown-extra' is not installed, so not removed 1144: Package 'php-twig-string-extra' is not installed, so not removed 1145: Package 'php8.3-uopz' is not installed, so not removed 1146: Package 'php-uopz-all-dev' is not installed, so not removed 1147: Package 'php8.3-uploadprogress' is not installed, so not removed 1148: Package 'php-uploadprogress-all-dev' is not installed, so not removed 1149: Package 'php8.3-uuid' is not installed, so not removed 1150: Package 'php-uuid-all-dev' is not installed, so not removed 1151: Package 'php-validate' is not installed, so not removed 1152: Package 'php-vlucas-phpdotenv' is not installed, so not removed 1153: Package 'php-voku-portable-ascii' is not installed, so not removed 1154: Package 'php-wmerrors' is not installed, so not removed 1155: Package 'php-xdebug-all-dev' is not installed, so not removed ... 1791: �[32m[65 / 219]�[0m checking cached actions 1792: (21:17:18) �[32mAnalyzing:�[0m 2289 targets (1432 packages loaded, 43122 targets configured) 1793: �[32m[846 / 996]�[0m checking cached actions 1794: (21:17:23) �[32mAnalyzing:�[0m 2289 targets (1437 packages loaded, 43312 targets configured) 1795: �[32m[846 / 996]�[0m checking cached actions 1796: (21:17:27) �[32mINFO: �[0mFrom Building external/contrib_rules_jvm+/java/src/com/github/bazel_contrib/contrib_rules_jvm/junit5/liballow.jar (1 source file): 1797: warning: [options] source value 8 is obsolete and will be removed in a future release 1798: warning: [options] target value 8 is obsolete and will be removed in a future release 1799: warning: [options] To suppress warnings about obsolete options, use -Xlint:-options. 1800: (21:17:28) �[32mINFO: �[0mFrom Building external/contrib_rules_jvm+/java/src/com/github/bazel_contrib/contrib_rules_jvm/junit5/libjunit5-compile-class.jar (19 source files): 1801: warning: [options] source value 8 is obsolete and will be removed in a future release 1802: warning: [options] target value 8 is obsolete and will be removed in a future release 1803: warning: [options] To suppress warnings about obsolete options, use -Xlint:-options. 1804: (21:17:28) �[32mAnalyzing:�[0m 2289 targets (1574 packages loaded, 48096 targets configured) 1805: �[32m[1,533 / 1,612]�[0m Building java/test/org/openqa/selenium/net/libnet.jar (1 source file); 0s remote, remote-cache ... (2 actions, 0 running) 1806: (21:17:31) �[35mWARNING: �[0mDownload from https://github.com/madler/zlib/releases/download/v1.3.1/zlib-1.3.1.tar.gz failed: class com.google.devtools.build.lib.bazel.repository.downloader.UnrecoverableHttpException GET returned 400 Bad Request 1807: (21:17:31) �[32mINFO: �[0mRepository zlib+ instantiated at: 1808: <builtin>: in <toplevel> 1809: Repository rule http_archive defined at: 1810: /home/runner/.bazel/external/bazel_tools/tools/build_defs/repo/http.bzl:387:31: in <toplevel> 1811: (21:17:31) �[31m�[1mERROR: �[0m/home/runner/.bazel/external/bazel_tools/tools/build_defs/repo/http.bzl:136:45: An error occurred during the fetch of repository 'zlib+': 1812: Traceback (most recent call last): 1813: File "/home/runner/.bazel/external/bazel_tools/tools/build_defs/repo/http.bzl", line 136, column 45, in _http_archive_impl 1814: download_info = ctx.download_and_extract( 1815: Error in download_and_extract: java.io.IOException: Error downloading [https://github.com/madler/zlib/releases/download/v1.3.1/zlib-1.3.1.tar.gz] to /home/runner/.bazel/external/zlib+/temp12129346873220701145/zlib-1.3.1.tar.gz: GET returned 400 Bad Request 1816: (21:17:31) �[31m�[1mERROR: �[0mno such package '@@zlib+//': java.io.IOException: Error downloading [https://github.com/madler/zlib/releases/download/v1.3.1/zlib-1.3.1.tar.gz] to /home/runner/.bazel/external/zlib+/temp12129346873220701145/zlib-1.3.1.tar.gz: GET returned 400 Bad Request 1817: (21:17:32) �[31m�[1mERROR: �[0m/home/runner/.bazel/external/protobuf+/src/google/protobuf/io/BUILD.bazel:148:11: @@protobuf+//src/google/protobuf/io:gzip_stream depends on @@zlib+//:zlib in repository @@zlib+ which failed to fetch. no such package '@@zlib+//': java.io.IOException: Error downloading [https://github.com/madler/zlib/releases/download/v1.3.1/zlib-1.3.1.tar.gz] to /home/runner/.bazel/external/zlib+/temp12129346873220701145/zlib-1.3.1.tar.gz: GET returned 400 Bad Request 1818: (21:17:33) �[32mAnalyzing:�[0m 2289 targets (1622 packages loaded, 52460 targets configured) ... 1977: �[0m �[0m�[0m�[1m�[38;5;12m= �[0m�[0m�[1mnote�[0m�[0m: `#[warn(unused_mut)]` on by default�[0m 1978: �[0m�[1m�[33mwarning�[0m�[0m�[1m: 1 warning emitted�[0m 1979: (21:17:36) �[32mINFO: �[0mFrom Compiling Rust bin integration_browser_tests (2 files): 1980: �[0m�[1m�[33mwarning�[0m�[0m�[1m: variable does not need to be mutable�[0m 1981: �[0m �[0m�[0m�[1m�[38;5;12m--> �[0m�[0mrust/tests/common.rs:31:9�[0m 1982: �[0m �[0m�[0m�[1m�[38;5;12m|�[0m 1983: �[0m�[1m�[38;5;12m31�[0m�[0m �[0m�[0m�[1m�[38;5;12m|�[0m�[0m �[0m�[0m let mut path = PathBuf::from(env!("CARGO_BIN_EXE_selenium-manager"));�[0m 1984: �[0m �[0m�[0m�[1m�[38;5;12m|�[0m�[0m �[0m�[0m�[1m�[38;5;12m----�[0m�[0m�[1m�[33m^^^^�[0m 1985: �[0m �[0m�[0m�[1m�[38;5;12m|�[0m�[0m �[0m�[0m�[1m�[38;5;12m|�[0m 1986: �[0m �[0m�[0m�[1m�[38;5;12m|�[0m�[0m �[0m�[0m�[1m�[38;5;12mhelp: remove this `mut`�[0m 1987: �[0m �[0m�[0m�[1m�[38;5;12m|�[0m 1988: �[0m �[0m�[0m�[1m�[38;5;12m= �[0m�[0m�[1mnote�[0m�[0m: `#[warn(unused_mut)]` on by default�[0m 1989: �[0m�[1m�[33mwarning�[0m�[0m�[1m: 1 warning emitted�[0m 1990: (21:17:39) �[32mAnalyzing:�[0m 2289 targets (1652 packages loaded, 60988 targets configured) 1991: �[32m[2,359 / 2,359]�[0m 115 / 115 tests;�[0m no actions running 1992: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/interactions:DefaultWheelTest-spotbugs', it will not be built. 1993: Analysis failed 1994: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:MiscTest-edge', it will not be built. 1995: Analysis failed 1996: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ProxySettingTest-edge', it will not be built. 1997: Analysis failed 1998: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:SessionHandlingTest-edge', it will not be built. 1999: Analysis failed 2000: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:UnexpectedAlertBehaviorTest-spotbugs', it will not be built. 2001: Analysis failed 2002: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/pagefactory:AnnotationsTest-spotbugs', it will not be built. 2003: Analysis failed 2004: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:WebElementTest-spotbugs', it will not be built. 2005: Analysis failed 2006: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//javascript/selenium-webdriver:test-edge-service-test.js-chrome', it will not be built. 2007: Analysis failed 2008: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/rendered_webelement_tests.py', it will not be built. 2009: Analysis failed 2010: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/bidi_browsing_context_tests.py', it will not be built. 2011: Analysis failed 2012: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ModernModalTest-chrome', it will not be built. 2013: Analysis failed 2014: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-bidi-test/selenium/webdriver/common/driver_finder_tests.py', it will not be built. 2015: Analysis failed 2016: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/support/UI:SlowLoadableComponentTest', it will not be built. 2017: Analysis failed 2018: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//javascript/selenium-webdriver:test-lib-form-submit-test.js-chrome', it will not be built. 2019: Analysis failed 2020: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-test/selenium/webdriver/common/timeout_tests.py', it will not be built. 2021: Analysis failed 2022: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:window-chrome-remote', it will not be built. 2023: Analysis failed 2024: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:StressTest-chrome', it will not be built. 2025: Analysis failed 2026: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/ui:WebDriverWaitTest-spotbugs', it will not be built. 2027: Analysis failed 2028: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:NewSessionCreationTest-edge', it will not be built. 2029: Analysis failed 2030: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/unit/selenium/webdriver/common/interactions:input_device', it will not be built. 2031: Analysis failed 2032: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:VisibilityTest-chrome', it will not be built. 2033: Analysis failed 2034: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/network:NetworkCommandsTest-chrome', it will not be built. 2035: Analysis failed 2036: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/input:SetFilesCommandTest-remote', it will not be built. 2037: Analysis failed 2038: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-bidi-test/selenium/webdriver/support/event_firing_webdriver_tests.py', it will not be built. 2039: Analysis failed 2040: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/src/org/openqa/selenium/grid/sessionqueue/httpd:httpd-spotbugs', it will not be built. 2041: Analysis failed 2042: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//javascript/selenium-webdriver:test-firefox-contextSwitching-test.js-chrome', it will not be built. 2043: Analysis failed 2044: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/virtual_authenticator_tests.py', it will not be built. 2045: Analysis failed 2046: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/html5:LocalStorageTest-chrome', it will not be built. 2047: Analysis failed 2048: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-test/selenium/webdriver/common/devtools_tests.py', it will not be built. 2049: Analysis failed 2050: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:driver-edge-remote', it will not be built. 2051: Analysis failed 2052: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:TextPagesTest-chrome', it will not be built. 2053: Analysis failed 2054: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/input:DefaultWheelTest-chrome', it will not be built. 2055: Analysis failed 2056: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:manager-edge', it will not be built. 2057: Analysis failed 2058: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:target_locator-edge', it will not be built. 2059: Analysis failed 2060: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:TakesScreenshotTest-chrome', it will not be built. 2061: Analysis failed 2062: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/network:NetworkCommandsTest-chrome-remote', it will not be built. 2063: Analysis failed 2064: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:navigation-firefox-beta', it will not be built. 2065: Analysis failed 2066: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//javascript/selenium-webdriver:test-lib-api-test.js-chrome', it will not be built. 2067: Analysis failed 2068: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextInspectorTest-remote', it will not be built. 2069: Analysis failed 2070: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:PageLoadingTest-spotbugs', it will not be built. 2071: Analysis failed 2072: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-remote', it will not be built. 2073: Analysis failed 2074: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:virtual_authenticator-firefox', it will not be built. 2075: Analysis failed 2076: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:test-chrome-test/selenium/webdriver/chrome/chrome_network_emulation_tests.py', it will not be built. 2077: Analysis failed 2078: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi:BiDiSessionCleanUpTest-remote', it will not be built. 2079: Analysis failed 2080: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-test/selenium/webdriver/common/element_attribute_tests.py', it will not be built. 2081: Analysis failed 2082: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/unit/selenium/webdriver/edge:profile', it will not be built. 2083: Analysis failed 2084: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:Interactions/CombinedInputActionsTest-edge', it will not be built. 2085: Analysis failed 2086: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-test/selenium/webdriver/common/selenium_manager_tests.py', it will not be built. 2087: Analysis failed 2088: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:PageLoadingTest-firefox-beta', it will not be built. 2089: Analysis failed 2090: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:SessionHandlingTest-edge', it will not be built. 2091: Analysis failed 2092: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote', it will not be built. 2093: Analysis failed 2094: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:SlowLoadingPageTest', it will not be built. 2095: Analysis failed 2096: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/script:ScriptCommandsTest-remote', it will not be built. 2097: Analysis failed 2098: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-test/selenium/webdriver/common/click_scrolling_tests.py', it will not be built. 2099: Analysis failed 2100: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:TextPagesTest-chrome', it will not be built. 2101: Analysis failed 2102: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:PrintTest-firefox', it will not be built. 2103: Analysis failed 2104: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver/firefox:driver-firefox', it will not be built. 2105: Analysis failed 2106: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ExecutingAsyncJavascriptTest-spotbugs', it will not be built. 2107: Analysis failed 2108: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:GetLogsTest-firefox', it will not be built. 2109: Analysis failed 2110: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/edge:EdgeDriverInfoTest', it will not be built. 2111: Analysis failed 2112: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:action_builder-edge', it will not be built. 2113: Analysis failed 2114: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-bidi-test/selenium/webdriver/common/bidi_tests.py', it will not be built. 2115: Analysis failed 2116: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:action_builder-firefox-beta-bidi', it will not be built. 2117: Analysis failed 2118: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:window-firefox', it will not be built. 2119: Analysis failed 2120: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/unit/selenium/webdriver/edge:service', it will not be built. 2121: Analysis failed 2122: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/browser:BrowserCommandsTest-edge-remote', it will not be built. 2123: Analysis failed 2124: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:error-firefox-beta-bidi', it will not be built. 2125: Analysis failed 2126: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:WebNetworkTest-firefox-beta', it will not be built. 2127: Analysis failed 2128: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/edge:EdgeDriverFunctionalTest-spotbugs', it will not be built. 2129: Analysis failed 2130: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/devtools:NetworkInterceptorTest-remote', it will not be built. 2131: Analysis failed 2132: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/interactions:DefaultKeyboardTest-remote', it will not be built. 2133: Analysis failed 2134: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/node/local:LocalNodeTest', it will not be built. 2135: Analysis failed 2136: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-bidi-test/selenium/webdriver/common/cookie_tests.py', it will not be built. 2137: Analysis failed 2138: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:WebScriptExecuteTest-chrome', it will not be built. 2139: Analysis failed 2140: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:ProxySettingTest-edge', it will not be built. 2141: Analysis failed 2142: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//javascript/selenium-webdriver:test-bidi-browsingcontext-inspector-test.js-chrome', it will not be built. 2143: Analysis failed 2144: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:StaleElementReferenceTest-spotbugs', it will not be built. 2145: Analysis failed 2146: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:StressTest-edge-remote', it will not be built. 2147: Analysis failed 2148: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-bidi-test/selenium/webdriver/common/interactions_with_device_tests.py', it will not be built. 2149: Analysis failed 2150: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:EndToEndTest', it will not be built. 2151: Analysis failed 2152: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/network:AddInterceptParametersTest-edge', it will not be built. 2153: Analysis failed 2154: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/pagefactory:internal/LocatingElementHandlerTest', it will not be built. 2155: Analysis failed 2156: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:DevTools/DevToolsLogTest-chrome', it will not be built. 2157: Analysis failed 2158: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote:small-tests-test-lib-spotbugs', it will not be built. 2159: Analysis failed 2160: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:zipper-firefox-bidi', it will not be built. 2161: Analysis failed 2162: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:unit-test/unit/selenium/webdriver/common/cdp_module_fallback_tests.py', it will not be built. 2163: Analysis failed 2164: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver/bidi:log_inspector-chrome', it will not be built. 2165: Analysis failed 2166: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:select-chrome-bidi', it will not be built. 2167: Analysis failed 2168: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/firefox:small-tests-test-lib-spotbugs', it will not be built. 2169: Analysis failed 2170: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/pagefactory:DefaultFieldDecoratorTest', it will not be built. 2171: Analysis failed 2172: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/select_element_handling_tests.py', it will not be built. 2173: Analysis failed 2174: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//javascript/selenium-webdriver:test-elementAccessibleName-test.js-chrome', it will not be built. 2175: Analysis failed 2176: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/interactions_with_device_tests.py', it will not be built. 2177: Analysis failed 2178: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver/bidi:log_inspector-chrome-bidi', it will not be built. 2179: Analysis failed 2180: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:TypingTest-spotbugs', it will not be built. 2181: Analysis failed 2182: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/correct_event_firing_tests.py', it will not be built. 2183: Analysis failed 2184: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:HistoryNavigationTest-chrome', it will not be built. 2185: Analysis failed 2186: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:DistributedTest-chrome-remote', it will not be built. 2187: Analysis failed 2188: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/devtools:CdpEndpointFinderTest-remote', it will not be built. 2189: Analysis failed 2190: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:Interactions/BasicMouseInterfaceTest-chrome', it will not be built. 2191: Analysis failed 2192: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-test/selenium/webdriver/common/element_aria_label_tests.py', it will not be built. 2193: Analysis failed 2194: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:fedcm-edge', it will not be built. 2195: Analysis failed 2196: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//javascript/selenium-webdriver:test-firefox-addon-test.js-firefox', it will not be built. 2197: Analysis failed 2198: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-bidi-test/selenium/webdriver/common/interactions_with_device_tests.py', it will not be built. 2199: Analysis failed 2200: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//javascript/webdriver:test-firefox-beta', it will not be built. 2201: Analysis failed 2202: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/pagefactory:ByAllTest-spotbugs', it will not be built. 2203: Analysis failed 2204: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/element_aria_label_tests.py', it will not be built. 2205: Analysis failed 2206: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:element-edge', it will not be built. 2207: Analysis failed 2208: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/ie:InternetExplorerOptionsTest-spotbugs', it will not be built. 2209: Analysis failed 2210: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:SelectElementHandlingTest-edge', it will not be built. 2211: Analysis failed 2212: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:RemoteWebDriverBiDiTest-chrome', it will not be built. 2213: Analysis failed 2214: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//javascript/selenium-webdriver:test-ie-options-test.js-firefox', it will not be built. 2215: Analysis failed 2216: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/unit/selenium/webdriver:proxy', it will not be built. 2217: Analysis failed 2218: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:SessionQueueGridWithTimeoutTest', it will not be built. 2219: Analysis failed 2220: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:unit-test/unit/selenium/webdriver/safari/safari_options_tests.py', it will not be built. 2221: Analysis failed 2222: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver/bidi:network-edge-remote', it will not be built. 2223: Analysis failed 2224: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/node/config:SessionCapabilitiesMutatorTest-spotbugs', it will not be built. 2225: Analysis failed 2226: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:timeout-chrome-bidi', it will not be built. 2227: Analysis failed 2228: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//javascript/selenium-webdriver:test-print-pdf-test.js-firefox', it will not be built. 2229: Analysis failed 2230: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/interactions:CompositeActionTest', it will not be built. 2231: Analysis failed 2232: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/graphql:GraphqlHandlerTest-spotbugs', it will not be built. 2233: Analysis failed 2234: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/support/Events:EventFiringWebDriverTest', it will not be built. 2235: Analysis failed 2236: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:driver-firefox-remote', it will not be built. 2237: Analysis failed 2238: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ModernModalTest-edge', it will not be built. 2239: Analysis failed 2240: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-test/selenium/webdriver/common/interactions_with_device_tests.py', it will not be built. 2241: Analysis failed 2242: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/interactions:ActionDurationTest', it will not be built. 2243: Analysis failed 2244: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/devtools:NetworkInterceptorRestTest-edge-remote', it will not be built. 2245: Analysis failed 2246: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:TextHandlingTest-firefox', it will not be built. 2247: Analysis failed 2248: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote:ErrorCodecTest-spotbugs', it will not be built. 2249: Analysis failed 2250: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//javascript/selenium-webdriver:test-rect-test.js-chrome', it will not be built. 2251: Analysis failed 2252: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-chrome-remote', it will not be built. 2253: Analysis failed 2254: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/support/UI:SelectTests', it will not be built. 2255: Analysis failed 2256: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:manager-chrome-bidi', it will not be built. 2257: Analysis failed 2258: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-test/selenium/webdriver/common/webdriverwait_tests.py', it will not be built. 2259: Analysis failed 2260: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote/http:UrlPathTest', it will not be built. 2261: Analysis failed 2262: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:BiDi/Network/NetworkEventsTest-chrome', it will not be built. 2263: Analysis failed 2264: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:zipper-firefox-beta-remote', it will not be built. 2265: Analysis failed 2266: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/pagefactory:DefaultElementLocatorTest', it will not be built. 2267: Analysis failed 2268: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:target_locator-edge-bidi', it will not be built. 2269: Analysis failed 2270: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/netty/server:WebSocketServingTest-spotbugs', it will not be built. 2271: Analysis failed 2272: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/os:CommandLineTest-spotbugs', it will not be built. 2273: Analysis failed 2274: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-test/selenium/webdriver/support/event_firing_webdriver_tests.py', it will not be built. 2275: Analysis failed 2276: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:SessionQueueGridTest-spotbugs', it will not be built. 2277: Analysis failed 2278: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-edge-remote', it will not be built. 2279: Analysis failed 2280: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//javascript/selenium-webdriver:test-execute-script-test.js-firefox', it will not be built. 2281: Analysis failed 2282: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:fedcm-firefox-remote', it will not be built. 2283: Analysis failed 2284: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:listener-firefox-beta', it will not be built. 2285: Analysis failed 2286: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:DevTools/DevToolsTargetTest-edge', it will not be built. 2287: Analysis failed 2288: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/script:LocalValueTest-remote', it will not be built. 2289: Analysis failed 2290: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/unit/selenium/webdriver:guard', it will not be built. 2291: Analysis failed 2292: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:SelectElementHandlingTest-edge', it will not be built. 2293: Analysis failed 2294: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/net:NetworkUtilsTest', it will not be built. 2295: Analysis failed 2296: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:ClickScrollingTest-chrome', it will not be built. 2297: Analysis failed 2298: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote:ProtocolHandshakeTest-spotbugs', it will not be built. 2299: Analysis failed 2300: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextInspectorTest-chrome-remote', it will not be built. 2301: Analysis failed 2302: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:takes_screenshot-firefox-remote', it will not be built. 2303: Analysis failed 2304: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ElementSelectingTest', it will not be built. 2305: Analysis failed 2306: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:RemoteWebDriverBiDiTest-spotbugs', it will not be built. 2307: Analysis failed 2308: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/click_tests.py', it will not be built. 2309: Analysis failed 2310: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-bidi-test/selenium/webdriver/common/frame_switching_tests.py', it will not be built. 2311: Analysis failed 2312: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:devtools-edge-remote', it will not be built. 2313: Analysis failed 2314: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver/bidi:log_inspector-firefox-beta', it will not be built. 2315: Analysis failed 2316: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:BiDi/Script/CallFunctionRemoteValueTest-chrome', it will not be built. 2317: Analysis failed 2318: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ImplicitWaitTest-firefox-beta', it will not be built. 2319: Analysis failed 2320: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:TextHandlingTest-spotbugs', it will not be built. 2321: Analysis failed 2322: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/distributor:DrainTest-chrome', it will not be built. 2323: Analysis failed 2324: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:zipper-edge-bidi', it will not be built. 2325: Analysis failed 2326: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-bidi-test/selenium/webdriver/common/web_components_tests.py', it will not be built. 2327: Analysis failed 2328: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/input:DefaultMouseTest-edge', it will not be built. 2329: Analysis failed 2330: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/html5:LocalStorageTest-spotbugs', it will not be built. 2331: Analysis failed 2332: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//javascript/selenium-webdriver:test-bidi-locate-nodes-test.js-firefox', it will not be built. 2333: Analysis failed 2334: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/distributor:medium-tests-test-lib-spotbugs', it will not be built. 2335: Analysis failed 2336: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote/http:DumpHttpExchangeFilterTest-spotbugs', it will not be built. 2337: Analysis failed 2338: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:Internal/Logging/LogTest-edge', it will not be built. 2339: Analysis failed 2340: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:PrintTest-edge', it will not be built. 2341: Analysis failed 2342: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:StaleElementReferenceTest', it will not be built. 2343: Analysis failed 2344: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-test/selenium/webdriver/common/children_finding_tests.py', it will not be built. 2345: Analysis failed 2346: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:ElementFindingTest-chrome', it will not be built. 2347: Analysis failed 2348: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:listener-chrome', it will not be built. 2349: Analysis failed 2350: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/unit/selenium/webdriver/support:event_firing', it will not be built. 2351: Analysis failed 2352: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:bidi-firefox-remote', it will not be built. 2353: Analysis failed 2354: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:unit-test/unit/selenium/webdriver/common/common_options_tests.py', it will not be built. 2355: Analysis failed 2356: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:JmxTest', it will not be built. 2357: Analysis failed 2358: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:TypingTest-edge', it will not be built. 2359: Analysis failed 2360: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-chrome', it will not be built. 2361: Analysis failed 2362: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:devtools-firefox-bidi', it will not be built. 2363: Analysis failed 2364: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//javascript/selenium-webdriver:test-chrome-devtools-test.js-firefox', it will not be built. 2365: Analysis failed 2366: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/interactions_tests.py', it will not be built. 2367: Analysis failed 2368: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ClickScrollingTest-chrome', it will not be built. 2369: Analysis failed 2370: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote', it will not be built. 2371: Analysis failed 2372: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/events:EventFiringDecoratorTest', it will not be built. 2373: Analysis failed 2374: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:TextHandlingTest-chrome', it will not be built. 2375: Analysis failed 2376: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/distributor/local:LocalDistributorTest-spotbugs', it will not be built. 2377: Analysis failed 2378: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-bidi-test/selenium/webdriver/common/window_switching_tests.py', it will not be built. 2379: Analysis failed 2380: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:JavascriptEnabledBrowserTest-firefox', it will not be built. 2381: Analysis failed 2382: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/json:JsonTest-spotbugs', it will not be built. 2383: Analysis failed 2384: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/devtools:NetworkInterceptorRestTest', it will not be built. 2385: Analysis failed 2386: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/decorators:DecoratedRemoteWebDriverTest', it will not be built. 2387: Analysis failed 2388: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:FormHandlingTest', it will not be built. 2389: Analysis failed 2390: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:driver-chrome', it will not be built. 2391: Analysis failed 2392: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ClearTest-chrome', it will not be built. 2393: Analysis failed 2394: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:takes_screenshot-firefox-beta', it will not be built. 2395: Analysis failed 2396: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver/remote:element-firefox-bidi', it will not be built. 2397: Analysis failed 2398: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ElementFindingTest-spotbugs', it will not be built. 2399: Analysis failed 2400: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/ie:InternetExplorerDriverServiceTest', it will not be built. 2401: Analysis failed 2402: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver/bidi:log_inspector-firefox-bidi', it will not be built. 2403: Analysis failed 2404: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:print/PrintOptionsTest-spotbugs', it will not be built. 2405: Analysis failed 2406: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:timeout-edge-bidi', it will not be built. 2407: Analysis failed 2408: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:BiDi/Network/NetworkEventsTest-edge', it will not be built. 2409: Analysis failed 2410: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:TextHandlingTest-chrome', it will not be built. 2411: Analysis failed 2412: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ElementFindingTest-chrome', it will not be built. 2413: Analysis failed 2414: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:element-firefox-beta-bidi', it will not be built. 2415: Analysis failed 2416: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ClickTest-firefox-beta', it will not be built. 2417: Analysis failed 2418: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-bidi-test/selenium/webdriver/common/element_aria_label_tests.py', it will not be built. 2419: Analysis failed 2420: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ClickScrollingTest', it will not be built. 2421: Analysis failed 2422: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/input:DefaultWheelTest-spotbugs', it will not be built. 2423: Analysis failed 2424: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ContentEditableTest-firefox-beta', it will not be built. 2425: Analysis failed 2426: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/edge:EdgeOptionsTest-remote', it will not be built. 2427: Analysis failed 2428: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:AlertsTest-firefox', it will not be built. 2429: Analysis failed 2430: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:ElementPropertyTest-firefox', it will not be built. 2431: Analysis failed 2432: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-bidi-test/selenium/webdriver/common/element_equality_tests.py', it will not be built. 2433: Analysis failed 2434: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/pagefactory:UsingPageFactoryTest-spotbugs', it will not be built. 2435: Analysis failed 2436: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver/bidi:network-chrome', it will not be built. 2437: Analysis failed 2438: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-bidi-test/selenium/webdriver/common/script_pinning_tests.py', it will not be built. 2439: Analysis failed 2440: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:listener-edge-bidi', it will not be built. 2441: Analysis failed 2442: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//javascript/selenium-webdriver:test-stale-element-test.js-firefox', it will not be built. 2443: Analysis failed 2444: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/input:SetFilesCommandTest-edge-remote', it will not be built. 2445: Analysis failed 2446: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/click_scrolling_tests.py', it will not be built. 2447: Analysis failed 2448: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/bidi_tests.py', it will not be built. 2449: Analysis failed 2450: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/src/org/openqa/selenium/support/locators:locators-spotbugs', it will not be built. 2451: Analysis failed 2452: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ContentEditableTest-spotbugs', it will not be built. 2453: Analysis failed 2454: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/unit/selenium/webdriver/common/interactions:interaction', it will not be built. 2455: Analysis failed 2456: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:UnexpectedAlertBehaviorTest-chrome', it will not be built. 2457: Analysis failed 2458: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/pagefactory:DefaultFieldDecoratorTest-spotbugs', it will not be built. 2459: Analysis failed 2460: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/network:NetworkCommandsTest', it will not be built. 2461: Analysis failed 2462: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/html5:SessionStorageTest', it will not be built. 2463: Analysis failed 2464: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/decorators:DecoratedRemoteWebDriverTest-spotbugs', it will not be built. 2465: Analysis failed 2466: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:OutputTypeTest', it will not be built. 2467: Analysis failed 2468: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/edge:EdgeOptionsFunctionalTest', it will not be built. 2469: Analysis failed 2470: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/decorators:DecoratedOptionsTest', it will not be built. 2471: Analysis failed 2472: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-test/selenium/webdriver/common/repr_tests.py', it will not be built. 2473: Analysis failed 2474: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:TakesScreenshotTest-chrome', it will not be built. 2475: Analysis failed 2476: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:FrameSwitchingTest-chrome', it will not be built. 2477: Analysis failed 2478: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ExecutingJavascriptTest', it will not be built. 2479: Analysis failed 2480: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-test/selenium/webdriver/common/opacity_tests.py', it will not be built. 2481: Analysis failed 2482: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:VisibilityTest-chrome', it will not be built. 2483: Analysis failed 2484: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-chrome-remote', it will not be built. 2485: Analysis failed 2486: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/common/web_components_tests.py', it will not be built. 2487: Analysis failed 2488: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:target_locator-firefox-beta', it will not be built. 2489: Analysis failed 2490: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:action_builder-firefox-remote', it will not be built. 2491: Analysis failed 2492: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:window-edge-bidi', it will not be built. 2493: Analysis failed 2494: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote/service:DriverFinderTest', it will not be built. 2495: Analysis failed 2496: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-test/selenium/webdriver/common/stale_reference_tests.py', it will not be built. 2497: Analysis failed 2498: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/firefox:FirefoxDriverConcurrentTest', it will not be built. 2499: Analysis failed 2500: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:TypingTest', it will not be built. 2501: Analysis failed 2502: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/server:NetworkOptionsTest-spotbugs', it will not be built. 2503: Analysis failed 2504: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:UploadTest-firefox', it will not be built. 2505: Analysis failed 2506: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-test/selenium/webdriver/common/virtual_authenticator_tests.py', it will not be built. 2507: Analysis failed 2508: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver/bidi:network-firefox-beta', it will not be built. 2509: Analysis failed 2510: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver/remote:driver-firefox-beta-bidi', it will not be built. 2511: Analysis failed 2512: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/firefox:FirefoxOptionsTest-spotbugs', it will not be built. 2513: Analysis failed 2514: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/support/ui:SelectLargeTest', it will not be built. 2515: Analysis failed 2516: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-test/selenium/webdriver/common/text_handling_tests.py', it will not be built. 2517: Analysis failed 2518: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:UnexpectedAlertBehaviorTest-chrome', it will not be built. 2519: Analysis failed 2520: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:FrameSwitchingTest-chrome', it will not be built. 2521: Analysis failed 2522: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-test/selenium/webdriver/common/quit_tests.py', it will not be built. 2523: Analysis failed 2524: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//rb/spec/integration/selenium/webdriver:element-firefox-beta', it will not be built. 2525: Analysis failed 2526: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote:RemoteWebDriverInitializationTest', it will not be built. 2527: Analysis failed 2528: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-test/selenium/webdriver/common/alerts_tests.py', it will not be built. 2529: Analysis failed 2530: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/firefox:TakesFullPageScreenshotTest', it will not be built. 2531: Analysis failed 2532: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-chrome-bidi-test/selenium/webdriver/support/relative_by_tests.py', it will not be built. 2533: Analysis failed 2534: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:MiscTest-edge', it will not be built. 2535: Analysis failed 2536: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/src/org/openqa/selenium/grid:grid-lib-spotbugs', it will not be built. 2537: Analysis failed 2538: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextInspectorTest-edge-remote', it will not be built. 2539: Analysis failed 2540: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:FrameSwitchingTest-spotbugs', it will not be built. 2541: Analysis failed 2542: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:UnexpectedAlertBehaviorTest-firefox', it will not be built. 2543: Analysis failed 2544: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote:AugmenterTest', it will not be built. 2545: Analysis failed 2546: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:WebElementTest-firefox', it will not be built. 2547: Analysis failed 2548: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:unit-test/unit/selenium/webdriver/chrome/chrome_options_tests.py', it will not be built. 2549: Analysis failed 2550: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/src/org/openqa/selenium/grid/node/config:config-spotbugs', it will not be built. 2551: Analysis failed 2552: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-bidi-test/selenium/webdriver/common/select_class_tests.py', it will not be built. 2553: Analysis failed 2554: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//dotnet/test/common:ContentEditableTest-firefox', it will not be built. 2555: Analysis failed 2556: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote:RemotableByTest', it will not be built. 2557: Analysis failed 2558: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium:ContentEditableTest', it will not be built. 2559: Analysis failed 2560: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/script:EvaluateParametersTest-remote', it will not be built. 2561: Analysis failed 2562: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/bidi/script:ScriptCommandsTest-chrome-remote', it will not be built. 2563: Analysis failed 2564: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/grid/router:DistributedTest', it will not be built. 2565: Analysis failed 2566: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/chromium:LoggingTest', it will not be built. 2567: Analysis failed 2568: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/devtools:JavascriptExceptionsTest-edge-remote', it will not be built. 2569: Analysis failed 2570: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-edge-bidi-test/selenium/webdriver/common/executing_async_javascript_tests.py', it will not be built. 2571: Analysis failed 2572: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/interactions:PointerInputTest-spotbugs', it will not be built. 2573: Analysis failed 2574: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/remote/service:DriverCommandExecutorTest-spotbugs', it will not be built. 2575: Analysis failed 2576: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:unit-test/unit/selenium/webdriver/remote/error_handler_tests.py', it will not be built. 2577: Analysis failed 2578: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//java/test/org/openqa/selenium/devtools:NetworkInterceptorTest-spotbugs', it will not be built. 2579: Analysis failed 2580: (21:17:40) �[35mWARNING: �[0merrors encountered while analyzing target '//py:common-firefox-test/selenium/webdriver/common/proxy_tests.py', it will not be built. 2581: Analysis failed 2582: (21:17:40) �[35mWARNI...
    @titusfortner titusfortner merged commit 479d197 into trunk Apr 28, 2025
    42 of 45 checks passed
    @titusfortner titusfortner deleted the fix_14622 branch April 28, 2025 21:46
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    3 participants