SeleniumHQ / selenium

A browser automation framework and ecosystem.
https://selenium.dev
Apache License 2.0
30.5k stars 8.15k forks source link

[🐛 Bug]: Does Selenium Grid remote webdriver support actions? #10058

Closed enrico-j-yang closed 2 years ago

enrico-j-yang commented 2 years ago

What happened?

I have set up a selenium grid using remote webdriver. My test code works fine on webdriver Action class to click on a point on the web. But when I port it remote webdriver and selenium grid 2 node, action doesn't take place.

How can we reproduce the issue?

Here is my code for remote webdriver.

    String Node = "http://xx.xx.xxx.28:5555/wd/hub";
    DesiredCapabilities caps = new DesiredCapabilities();
    caps.setBrowserName("chrome");
    driver = new RemoteWebDriver(new URL(Node), caps);

    Map<String, Double> offsets = new HashMap<>();
    offsets.put("xOffsetInches", labelWidthInches);
    offsets.put("yOffsetInches", labelHeightInches);
    WebElement wholeCanvas = driver.findElement(canvas);
    WebElement scaleFactorWE = driver.findElement(divScale);
    String strScaleFactor = scaleFactorWE.getText();
    double scaleFactor = Float.parseFloat(strScaleFactor.substring(0, strScaleFactor.indexOf("%"))) / 100;

    double xOffset = (ConvertInchesToPixels(labelWidthInches) * scaleFactor);
    double yOffset = (ConvertInchesToPixels(labelHeightInches) * scaleFactor);

    Actions actions = new Actions(driver);
    actions.moveToElement(wholeCanvas, (int)xOffset, (int)yOffset).click().perform();

### Relevant log output

```shell
"C:\Program Files\Java\jdk-11.0.10\bin\java.exe" -ea -Didea.test.cyclic.buffer.size=1048576 "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2021.2\lib\idea_rt.jar=53410:C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2021.2\bin" -Dfile.encoding=UTF-8 -classpath "C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2021.2\lib\idea_rt.jar;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2021.2\plugins\testng\lib\testng-rt.jar;C:\Users\Enrico Yang\Documents\repos\webportal_sanity_test\target\test-classes;C:\Users\Enrico Yang\Documents\repos\webportal_sanity_test\target\classes;C:\Users\Enrico Yang\.m2\repository\io\cucumber\cucumber-java\4.2.3\cucumber-java-4.2.3.jar;C:\Users\Enrico Yang\.m2\repository\io\cucumber\cucumber-core\4.2.3\cucumber-core-4.2.3.jar;C:\Users\Enrico Yang\.m2\repository\io\cucumber\cucumber-html\0.2.7\cucumber-html-0.2.7.jar;C:\Users\Enrico Yang\.m2\repository\io\cucumber\gherkin\5.1.0\gherkin-5.1.0.jar;C:\Users\Enrico Yang\.m2\repository\io\cucumber\tag-expressions\1.1.1\tag-expressions-1.1.1.jar;C:\Users\Enrico Yang\.m2\repository\io\cucumber\cucumber-expressions\6.2.0\cucumber-expressions-6.2.0.jar;C:\Users\Enrico Yang\.m2\repository\io\cucumber\datatable\1.1.12\datatable-1.1.12.jar;C:\Users\Enrico Yang\.m2\repository\io\cucumber\datatable-dependencies\1.1.12\datatable-dependencies-1.1.12.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\maven\surefire\surefire-testng\3.0.0-M4\surefire-testng-3.0.0-M4.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\maven\surefire\common-java5\3.0.0-M4\common-java5-3.0.0-M4.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\maven\surefire\surefire-testng-utils\3.0.0-M4\surefire-testng-utils-3.0.0-M4.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\maven\surefire\surefire-grouper\3.0.0-M4\surefire-grouper-3.0.0-M4.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\maven\surefire\surefire-api\3.0.0-M4\surefire-api-3.0.0-M4.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\maven\surefire\surefire-logger-api\3.0.0-M4\surefire-logger-api-3.0.0-M4.jar;C:\Users\Enrico Yang\.m2\repository\org\seleniumhq\selenium\selenium-chrome-driver\4.0.0\selenium-chrome-driver-4.0.0.jar;C:\Users\Enrico Yang\.m2\repository\com\google\auto\service\auto-service-annotations\1.0\auto-service-annotations-1.0.jar;C:\Users\Enrico Yang\.m2\repository\com\google\auto\service\auto-service\1.0\auto-service-1.0.jar;C:\Users\Enrico Yang\.m2\repository\com\google\auto\auto-common\1.0\auto-common-1.0.jar;C:\Users\Enrico Yang\.m2\repository\com\google\guava\guava\31.0.1-jre\guava-31.0.1-jre.jar;C:\Users\Enrico Yang\.m2\repository\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;C:\Users\Enrico Yang\.m2\repository\com\google\guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar;C:\Users\Enrico Yang\.m2\repository\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar;C:\Users\Enrico Yang\.m2\repository\org\checkerframework\checker-qual\3.12.0\checker-qual-3.12.0.jar;C:\Users\Enrico Yang\.m2\repository\com\google\errorprone\error_prone_annotations\2.7.1\error_prone_annotations-2.7.1.jar;C:\Users\Enrico Yang\.m2\repository\com\google\j2objc\j2objc-annotations\1.3\j2objc-annotations-1.3.jar;C:\Users\Enrico Yang\.m2\repository\org\seleniumhq\selenium\selenium-api\4.0.0\selenium-api-4.0.0.jar;C:\Users\Enrico Yang\.m2\repository\org\seleniumhq\selenium\selenium-chromium-driver\4.0.0\selenium-chromium-driver-4.0.0.jar;C:\Users\Enrico Yang\.m2\repository\org\seleniumhq\selenium\selenium-json\4.0.0\selenium-json-4.0.0.jar;C:\Users\Enrico Yang\.m2\repository\org\seleniumhq\selenium\selenium-remote-driver\4.0.0\selenium-remote-driver-4.0.0.jar;C:\Users\Enrico Yang\.m2\repository\io\netty\netty-buffer\4.1.68.Final\netty-buffer-4.1.68.Final.jar;C:\Users\Enrico Yang\.m2\repository\io\netty\netty-codec-http\4.1.67.Final\netty-codec-http-4.1.67.Final.jar;C:\Users\Enrico Yang\.m2\repository\io\netty\netty-codec\4.1.67.Final\netty-codec-4.1.67.Final.jar;C:\Users\Enrico Yang\.m2\repository\io\netty\netty-handler\4.1.67.Final\netty-handler-4.1.67.Final.jar;C:\Users\Enrico Yang\.m2\repository\io\netty\netty-common\4.1.68.Final\netty-common-4.1.68.Final.jar;C:\Users\Enrico Yang\.m2\repository\io\netty\netty-transport-native-epoll\4.1.67.Final\netty-transport-native-epoll-4.1.67.Final.jar;C:\Users\Enrico Yang\.m2\repository\io\netty\netty-transport-native-kqueue\4.1.67.Final\netty-transport-native-kqueue-4.1.67.Final.jar;C:\Users\Enrico Yang\.m2\repository\io\netty\netty-transport-native-unix-common\4.1.67.Final\netty-transport-native-unix-common-4.1.67.Final.jar;C:\Users\Enrico Yang\.m2\repository\io\netty\netty-transport\4.1.68.Final\netty-transport-4.1.68.Final.jar;C:\Users\Enrico Yang\.m2\repository\io\netty\netty-resolver\4.1.68.Final\netty-resolver-4.1.68.Final.jar;C:\Users\Enrico Yang\.m2\repository\io\opentelemetry\opentelemetry-api\1.6.0\opentelemetry-api-1.6.0.jar;C:\Users\Enrico Yang\.m2\repository\io\opentelemetry\opentelemetry-context\1.6.0\opentelemetry-context-1.6.0.jar;C:\Users\Enrico Yang\.m2\repository\io\opentelemetry\opentelemetry-exporter-logging\1.6.0\opentelemetry-exporter-logging-1.6.0.jar;C:\Users\Enrico Yang\.m2\repository\io\opentelemetry\opentelemetry-sdk-metrics\1.6.0-alpha\opentelemetry-sdk-metrics-1.6.0-alpha.jar;C:\Users\Enrico Yang\.m2\repository\io\opentelemetry\opentelemetry-sdk-common\1.6.0\opentelemetry-sdk-common-1.6.0.jar;C:\Users\Enrico Yang\.m2\repository\io\opentelemetry\opentelemetry-sdk-extension-autoconfigure-spi\1.6.0\opentelemetry-sdk-extension-autoconfigure-spi-1.6.0.jar;C:\Users\Enrico Yang\.m2\repository\io\opentelemetry\opentelemetry-sdk-extension-autoconfigure\1.6.0-alpha\opentelemetry-sdk-extension-autoconfigure-1.6.0-alpha.jar;C:\Users\Enrico Yang\.m2\repository\io\opentelemetry\opentelemetry-sdk-trace\1.6.0\opentelemetry-sdk-trace-1.6.0.jar;C:\Users\Enrico Yang\.m2\repository\io\opentelemetry\opentelemetry-api-metrics\1.6.0-alpha\opentelemetry-api-metrics-1.6.0-alpha.jar;C:\Users\Enrico Yang\.m2\repository\io\opentelemetry\opentelemetry-sdk\1.6.0\opentelemetry-sdk-1.6.0.jar;C:\Users\Enrico Yang\.m2\repository\io\opentelemetry\opentelemetry-semconv\1.6.0-alpha\opentelemetry-semconv-1.6.0-alpha.jar;C:\Users\Enrico Yang\.m2\repository\io\ous\jtoml\2.0.0\jtoml-2.0.0.jar;C:\Users\Enrico Yang\.m2\repository\org\asynchttpclient\async-http-client\2.12.3\async-http-client-2.12.3.jar;C:\Users\Enrico Yang\.m2\repository\org\asynchttpclient\async-http-client-netty-utils\2.12.3\async-http-client-netty-utils-2.12.3.jar;C:\Users\Enrico Yang\.m2\repository\io\netty\netty-codec-socks\4.1.60.Final\netty-codec-socks-4.1.60.Final.jar;C:\Users\Enrico Yang\.m2\repository\io\netty\netty-handler-proxy\4.1.60.Final\netty-handler-proxy-4.1.60.Final.jar;C:\Users\Enrico Yang\.m2\repository\io\netty\netty-transport-native-epoll\4.1.60.Final\netty-transport-native-epoll-4.1.60.Final-linux-x86_64.jar;C:\Users\Enrico Yang\.m2\repository\io\netty\netty-transport-native-kqueue\4.1.60.Final\netty-transport-native-kqueue-4.1.60.Final-osx-x86_64.jar;C:\Users\Enrico Yang\.m2\repository\org\reactivestreams\reactive-streams\1.0.3\reactive-streams-1.0.3.jar;C:\Users\Enrico Yang\.m2\repository\com\typesafe\netty\netty-reactive-streams\2.0.4\netty-reactive-streams-2.0.4.jar;C:\Users\Enrico Yang\.m2\repository\com\sun\activation\jakarta.activation\1.2.2\jakarta.activation-1.2.2.jar;C:\Users\Enrico Yang\.m2\repository\org\seleniumhq\selenium\selenium-http\4.0.0\selenium-http-4.0.0.jar;C:\Users\Enrico Yang\.m2\repository\org\seleniumhq\selenium\selenium-edge-driver\4.0.0\selenium-edge-driver-4.0.0.jar;C:\Users\Enrico Yang\.m2\repository\org\seleniumhq\selenium\selenium-firefox-driver\4.0.0\selenium-firefox-driver-4.0.0.jar;C:\Users\Enrico Yang\.m2\repository\org\seleniumhq\selenium\selenium-devtools-v85\4.0.0\selenium-devtools-v85-4.0.0.jar;C:\Users\Enrico Yang\.m2\repository\org\seleniumhq\selenium\selenium-support\4.0.0\selenium-support-4.0.0.jar;C:\Users\Enrico Yang\.m2\repository\org\testng\testng\7.4.0\testng-7.4.0.jar;C:\Users\Enrico Yang\.m2\repository\com\beust\jcommander\1.78\jcommander-1.78.jar;C:\Users\Enrico Yang\.m2\repository\org\webjars\jquery\3.5.1\jquery-3.5.1.jar;C:\Users\Enrico Yang\.m2\repository\commons-io\commons-io\1.4\commons-io-1.4.jar;C:\Users\Enrico Yang\.m2\repository\javax\mail\mail\1.4.7\mail-1.4.7.jar;C:\Users\Enrico Yang\.m2\repository\javax\activation\activation\1.1\activation-1.1.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\velocity\velocity\1.7\velocity-1.7.jar;C:\Users\Enrico Yang\.m2\repository\commons-collections\commons-collections\3.2.1\commons-collections-3.2.1.jar;C:\Users\Enrico Yang\.m2\repository\commons-lang\commons-lang\2.4\commons-lang-2.4.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\poi\poi\4.0.1\poi-4.0.1.jar;C:\Users\Enrico Yang\.m2\repository\commons-codec\commons-codec\1.11\commons-codec-1.11.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\commons\commons-collections4\4.2\commons-collections4-4.2.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\commons\commons-math3\3.6.1\commons-math3-3.6.1.jar;C:\Users\Enrico Yang\.m2\repository\postgresql\postgresql\9.1-901-1.jdbc4\postgresql-9.1-901-1.jdbc4.jar;C:\Users\Enrico Yang\.m2\repository\net\java\dev\jna\jna-platform\5.6.0\jna-platform-5.6.0.jar;C:\Users\Enrico Yang\.m2\repository\net\java\dev\jna\jna\5.6.0\jna-5.6.0.jar;C:\Users\Enrico Yang\.m2\repository\org\seleniumhq\selenium\selenium-java\3.141.59\selenium-java-3.141.59.jar;C:\Users\Enrico Yang\.m2\repository\org\seleniumhq\selenium\selenium-ie-driver\3.141.59\selenium-ie-driver-3.141.59.jar;C:\Users\Enrico Yang\.m2\repository\org\seleniumhq\selenium\selenium-opera-driver\3.141.59\selenium-opera-driver-3.141.59.jar;C:\Users\Enrico Yang\.m2\repository\org\seleniumhq\selenium\selenium-safari-driver\3.141.59\selenium-safari-driver-3.141.59.jar;C:\Users\Enrico Yang\.m2\repository\net\bytebuddy\byte-buddy\1.8.15\byte-buddy-1.8.15.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\commons\commons-exec\1.3\commons-exec-1.3.jar;C:\Users\Enrico Yang\.m2\repository\com\squareup\okhttp3\okhttp\3.11.0\okhttp-3.11.0.jar;C:\Users\Enrico Yang\.m2\repository\com\squareup\okio\okio\1.14.0\okio-1.14.0.jar;C:\Users\Enrico Yang\.m2\repository\ru\yandex\qatools\ashot\ashot\1.5.4\ashot-1.5.4.jar;C:\Users\Enrico Yang\.m2\repository\com\google\code\gson\gson\2.6.2\gson-2.6.2.jar;C:\Users\Enrico Yang\.m2\repository\org\hamcrest\hamcrest-core\1.3\hamcrest-core-1.3.jar;C:\Users\Enrico Yang\.m2\repository\net\sourceforge\tess4j\tess4j\4.1.1\tess4j-4.1.1.jar;C:\Users\Enrico Yang\.m2\repository\com\github\jai-imageio\jai-imageio-core\1.4.0\jai-imageio-core-1.4.0.jar;C:\Users\Enrico Yang\.m2\repository\org\ghost4j\ghost4j\1.0.1\ghost4j-1.0.1.jar;C:\Users\Enrico Yang\.m2\repository\log4j\log4j\1.2.17\log4j-1.2.17.jar;C:\Users\Enrico Yang\.m2\repository\commons-beanutils\commons-beanutils\1.9.2\commons-beanutils-1.9.2.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\xmlgraphics\xmlgraphics-commons\1.4\xmlgraphics-commons-1.4.jar;C:\Users\Enrico Yang\.m2\repository\com\lowagie\itext\2.1.7\itext-2.1.7.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\pdfbox\pdfbox\2.0.11\pdfbox-2.0.11.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\pdfbox\fontbox\2.0.11\fontbox-2.0.11.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\pdfbox\pdfbox-tools\2.0.11\pdfbox-tools-2.0.11.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\pdfbox\pdfbox-debugger\2.0.11\pdfbox-debugger-2.0.11.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\pdfbox\jbig2-imageio\3.0.1\jbig2-imageio-3.0.1.jar;C:\Users\Enrico Yang\.m2\repository\net\sourceforge\lept4j\lept4j\1.10.0\lept4j-1.10.0.jar;C:\Users\Enrico Yang\.m2\repository\org\jboss\jboss-vfs\3.2.12.Final\jboss-vfs-3.2.12.Final.jar;C:\Users\Enrico Yang\.m2\repository\org\jboss\logging\jboss-logging\3.1.4.GA\jboss-logging-3.1.4.GA.jar;C:\Users\Enrico Yang\.m2\repository\ch\qos\logback\logback-classic\1.2.3\logback-classic-1.2.3.jar;C:\Users\Enrico Yang\.m2\repository\ch\qos\logback\logback-core\1.2.3\logback-core-1.2.3.jar;C:\Users\Enrico Yang\.m2\repository\org\slf4j\jul-to-slf4j\1.7.25\jul-to-slf4j-1.7.25.jar;C:\Users\Enrico Yang\.m2\repository\org\slf4j\jcl-over-slf4j\1.7.25\jcl-over-slf4j-1.7.25.jar;C:\Users\Enrico Yang\.m2\repository\org\slf4j\log4j-over-slf4j\1.7.25\log4j-over-slf4j-1.7.25.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\camel\camel-barcode\2.21.1\camel-barcode-2.21.1.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\camel\camel-core\2.21.1\camel-core-2.21.1.jar;C:\Users\Enrico Yang\.m2\repository\com\sun\xml\bind\jaxb-core\2.3.0\jaxb-core-2.3.0.jar;C:\Users\Enrico Yang\.m2\repository\com\sun\xml\bind\jaxb-impl\2.3.0\jaxb-impl-2.3.0.jar;C:\Users\Enrico Yang\.m2\repository\com\google\zxing\core\3.4.1\core-3.4.1.jar;C:\Users\Enrico Yang\.m2\repository\com\google\zxing\javase\3.4.1\javase-3.4.1.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\httpcomponents\httpclient\4.5.13\httpclient-4.5.13.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\httpcomponents\httpcore\4.4.13\httpcore-4.4.13.jar;C:\Users\Enrico Yang\.m2\repository\commons-logging\commons-logging\1.2\commons-logging-1.2.jar;C:\Users\Enrico Yang\.m2\repository\org\json\json\20210307\json-20210307.jar;C:\Users\Enrico Yang\.m2\repository\com\jayway\restassured\json-schema-validator\2.9.0\json-schema-validator-2.9.0.jar;C:\Users\Enrico Yang\.m2\repository\com\github\fge\json-schema-validator\2.2.6\json-schema-validator-2.2.6.jar;C:\Users\Enrico Yang\.m2\repository\joda-time\joda-time\2.3\joda-time-2.3.jar;C:\Users\Enrico Yang\.m2\repository\com\googlecode\libphonenumber\libphonenumber\6.2\libphonenumber-6.2.jar;C:\Users\Enrico Yang\.m2\repository\com\github\fge\json-schema-core\1.2.5\json-schema-core-1.2.5.jar;C:\Users\Enrico Yang\.m2\repository\com\github\fge\uri-template\0.9\uri-template-0.9.jar;C:\Users\Enrico Yang\.m2\repository\com\github\fge\msg-simple\1.1\msg-simple-1.1.jar;C:\Users\Enrico Yang\.m2\repository\com\github\fge\btf\1.2\btf-1.2.jar;C:\Users\Enrico Yang\.m2\repository\com\github\fge\jackson-coreutils\1.8\jackson-coreutils-1.8.jar;C:\Users\Enrico Yang\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.2.3\jackson-databind-2.2.3.jar;C:\Users\Enrico Yang\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.2.3\jackson-annotations-2.2.3.jar;C:\Users\Enrico Yang\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.2.3\jackson-core-2.2.3.jar;C:\Users\Enrico Yang\.m2\repository\org\mozilla\rhino\1.7R4\rhino-1.7R4.jar;C:\Users\Enrico Yang\.m2\repository\javax\mail\mailapi\1.4.3\mailapi-1.4.3.jar;C:\Users\Enrico Yang\.m2\repository\net\sf\jopt-simple\jopt-simple\4.6\jopt-simple-4.6.jar;C:\Users\Enrico Yang\.m2\repository\io\rest-assured\rest-assured\3.1.0\rest-assured-3.1.0.jar;C:\Users\Enrico Yang\.m2\repository\org\codehaus\groovy\groovy\2.4.12\groovy-2.4.12.jar;C:\Users\Enrico Yang\.m2\repository\org\codehaus\groovy\groovy-xml\2.4.12\groovy-xml-2.4.12.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\httpcomponents\httpmime\4.5.1\httpmime-4.5.1.jar;C:\Users\Enrico Yang\.m2\repository\org\hamcrest\hamcrest-library\1.3\hamcrest-library-1.3.jar;C:\Users\Enrico Yang\.m2\repository\org\ccil\cowan\tagsoup\tagsoup\1.2.1\tagsoup-1.2.1.jar;C:\Users\Enrico Yang\.m2\repository\io\rest-assured\json-path\3.1.0\json-path-3.1.0.jar;C:\Users\Enrico Yang\.m2\repository\org\codehaus\groovy\groovy-json\2.4.12\groovy-json-2.4.12.jar;C:\Users\Enrico Yang\.m2\repository\io\rest-assured\rest-assured-common\3.1.0\rest-assured-common-3.1.0.jar;C:\Users\Enrico Yang\.m2\repository\io\rest-assured\xml-path\3.1.0\xml-path-3.1.0.jar;C:\Users\Enrico Yang\.m2\repository\org\apache\commons\commons-lang3\3.4\commons-lang3-3.4.jar;C:\Users\Enrico Yang\.m2\repository\javax\xml\bind\jaxb-api\2.2.12\jaxb-api-2.2.12.jar;C:\Users\Enrico Yang\.m2\repository\org\samba\jcifs\jcifs\1.2.19\jcifs-1.2.19.jar;C:\Users\Enrico Yang\.m2\repository\org\slf4j\slf4j-api\1.7.30\slf4j-api-1.7.30.jar;C:\Users\Enrico Yang\.m2\repository\com\github\stephenc\monte\monte-screen-recorder\0.7.7.0\monte-screen-recorder-0.7.7.0.jar" com.intellij.rt.testng.RemoteTestNGStarter -usedefaultlisteners false -socket53409 "@w@C:\Users\ENRICO~1\AppData\Local\Temp\idea_working_dirs_testng.tmp" -temp "C:\Users\ENRICO~1\AppData\Local\Temp\idea_testng.tmp"
Nov 19, 2021 11:01:03 AM org.openqa.selenium.remote.tracing.opentelemetry.OpenTelemetryTracer createTracer
INFO: Using OpenTelemetry for tracing
11:01:03.747 [TestNG-tests-1] DEBUG io.netty.util.internal.logging.InternalLoggerFactory - Using SLF4J as the default logging framework
11:01:03.762 [TestNG-tests-1] DEBUG io.netty.util.ResourceLeakDetector - -Dio.netty.leakDetection.level: simple
11:01:03.762 [TestNG-tests-1] DEBUG io.netty.util.ResourceLeakDetector - -Dio.netty.leakDetection.targetRecords: 4
11:01:03.762 [TestNG-tests-1] DEBUG io.netty.util.ResourceLeakDetectorFactory - Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@390d0481
11:01:03.778 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent0 - -Dio.netty.noUnsafe: false
11:01:03.778 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent0 - Java version: 11
11:01:03.778 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent0 - sun.misc.Unsafe.theUnsafe: available
11:01:03.778 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent0 - sun.misc.Unsafe.copyMemory: available
11:01:03.778 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.Buffer.address: available
11:01:03.778 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent0 - direct buffer constructor: unavailable: Reflective setAccessible(true) disabled
11:01:03.778 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.Bits.unaligned: available, true
11:01:03.778 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent0 - jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable: class io.netty.util.internal.PlatformDependent0$6 cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to unnamed module @22d5766a
11:01:03.778 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.DirectByteBuffer.<init>(long, int): unavailable
11:01:03.778 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent - sun.misc.Unsafe: available
11:01:03.794 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent - maxDirectMemory: 4236247040 bytes (maybe)
11:01:03.794 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.tmpdir: C:\Users\ENRICO~1\AppData\Local\Temp (java.io.tmpdir)
11:01:03.794 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.bitMode: 64 (sun.arch.data.model)
11:01:03.794 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent - Platform: Windows
11:01:03.794 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.maxDirectMemory: -1 bytes
11:01:03.794 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.uninitializedArrayAllocationThreshold: -1
11:01:03.794 [TestNG-tests-1] DEBUG io.netty.util.internal.CleanerJava9 - java.nio.ByteBuffer.cleaner(): available
11:01:03.794 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.noPreferDirect: false
11:01:03.794 [TestNG-tests-1] DEBUG io.netty.util.internal.PlatformDependent - org.jctools-core.MpscChunkedArrayQueue: available
11:01:03.809 [TestNG-tests-1] DEBUG io.netty.util.internal.InternalThreadLocalMap - -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024
11:01:03.809 [TestNG-tests-1] DEBUG io.netty.util.internal.InternalThreadLocalMap - -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096
11:01:03.934 [TestNG-tests-1] DEBUG io.netty.handler.ssl.JdkSslContext - Default protocols (JDK): [TLSv1.3, TLSv1.2, TLSv1.1, TLSv1] 
11:01:03.934 [TestNG-tests-1] DEBUG io.netty.handler.ssl.JdkSslContext - Default cipher suites (JDK): [TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_AES_128_GCM_SHA256, TLS_AES_256_GCM_SHA384]
11:01:03.950 [TestNG-tests-1] DEBUG io.netty.channel.MultithreadEventLoopGroup - -Dio.netty.eventLoopThreads: 12
11:01:03.950 [TestNG-tests-1] DEBUG io.netty.channel.nio.NioEventLoop - -Dio.netty.noKeySetOptimization: false
11:01:03.950 [TestNG-tests-1] DEBUG io.netty.channel.nio.NioEventLoop - -Dio.netty.selectorAutoRebuildThreshold: 512
11:01:03.981 [TestNG-tests-1] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.numHeapArenas: 12
11:01:03.981 [TestNG-tests-1] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.numDirectArenas: 12
11:01:03.981 [TestNG-tests-1] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.pageSize: 8192
11:01:03.981 [TestNG-tests-1] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.maxOrder: 11
11:01:03.981 [TestNG-tests-1] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.chunkSize: 16777216
11:01:03.981 [TestNG-tests-1] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.smallCacheSize: 256
11:01:03.981 [TestNG-tests-1] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.normalCacheSize: 64
11:01:03.981 [TestNG-tests-1] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.maxCachedBufferCapacity: 32768
11:01:03.981 [TestNG-tests-1] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.cacheTrimInterval: 8192
11:01:03.981 [TestNG-tests-1] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.cacheTrimIntervalMillis: 0
11:01:03.981 [TestNG-tests-1] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.useCacheForAllThreads: true
11:01:03.981 [TestNG-tests-1] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023
11:01:03.997 [TestNG-tests-1] DEBUG io.netty.buffer.ByteBufUtil - -Dio.netty.allocator.type: pooled
11:01:03.997 [TestNG-tests-1] DEBUG io.netty.buffer.ByteBufUtil - -Dio.netty.threadLocalDirectBufferSize: 0
11:01:03.997 [TestNG-tests-1] DEBUG io.netty.buffer.ByteBufUtil - -Dio.netty.maxThreadLocalCharBufferSize: 16384
11:01:04.216 [Forwarding newSession on session null to remote] DEBUG io.netty.channel.DefaultChannelId - -Dio.netty.processId: 11200 (auto-detected)
11:01:04.216 [Forwarding newSession on session null to remote] DEBUG io.netty.util.NetUtil - -Djava.net.preferIPv4Stack: false
11:01:04.216 [Forwarding newSession on session null to remote] DEBUG io.netty.util.NetUtil - -Djava.net.preferIPv6Addresses: false
11:01:04.263 [Forwarding newSession on session null to remote] DEBUG io.netty.util.NetUtilInitializations - Loopback interface: lo (Software Loopback Interface 1, 127.0.0.1)
11:01:04.263 [Forwarding newSession on session null to remote] DEBUG io.netty.util.NetUtil - Failed to get SOMAXCONN from sysctl and file \proc\sys\net\core\somaxconn. Default: 200
11:01:04.309 [Forwarding newSession on session null to remote] DEBUG io.netty.channel.DefaultChannelId - -Dio.netty.machineId: e8:d8:d1:ff:fe:c4:c5:30 (auto-detected)
11:01:04.341 [AsyncHttpClient-1-2] DEBUG io.netty.buffer.AbstractByteBuf - -Dio.netty.buffer.checkAccessible: true
11:01:04.341 [AsyncHttpClient-1-2] DEBUG io.netty.buffer.AbstractByteBuf - -Dio.netty.buffer.checkBounds: true
11:01:04.341 [AsyncHttpClient-1-2] DEBUG io.netty.util.ResourceLeakDetectorFactory - Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@29beff94
11:01:04.356 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.NettyConnectListener - Using new Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to '/wd/hub/session'
11:01:04.372 [AsyncHttpClient-1-2] DEBUG io.netty.util.Recycler - -Dio.netty.recycler.maxCapacityPerThread: 4096
11:01:04.372 [AsyncHttpClient-1-2] DEBUG io.netty.util.Recycler - -Dio.netty.recycler.maxSharedCapacityFactor: 2
11:01:04.372 [AsyncHttpClient-1-2] DEBUG io.netty.util.Recycler - -Dio.netty.recycler.linkCapacity: 16
11:01:04.372 [AsyncHttpClient-1-2] DEBUG io.netty.util.Recycler - -Dio.netty.recycler.ratio: 8
11:01:04.372 [AsyncHttpClient-1-2] DEBUG io.netty.util.Recycler - -Dio.netty.recycler.delayedQueue.ratio: 8
11:01:06.106 [AsyncHttpClient-1-2] DEBUG io.netty.handler.codec.compression.Brotli - brotli4j not in the classpath; Brotli support will be unavailable.
11:01:06.106 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-269642521d010b615ffe9424776ba0d1-6e268322d8b43c8a-01
Content-Length: 486
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:52:29 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 1285

11:01:06.122 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
Nov 19, 2021 11:01:06 AM org.openqa.selenium.remote.ProtocolHandshake createSession
INFO: Detected dialect: OSS
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/C:/Users/Enrico%20Yang/.m2/repository/org/codehaus/groovy/groovy/2.4.12/groovy-2.4.12.jar) to method java.lang.Object.finalize()
WARNING: Please consider reporting this to the maintainers of org.codehaus.groovy.reflection.CachedClass
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
11:01:06.841 [TestNG-tests-1] DEBUG org.apache.http.impl.conn.BasicClientConnectionManager - Get connection for route {}->http://10.48.213.53:8090
11:01:06.841 [TestNG-tests-1] DEBUG org.apache.http.impl.conn.DefaultClientConnectionOperator - Connecting to 10.48.213.53:8090
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.client.protocol.RequestAddCookies - CookieSpec selected: ignoreCookies
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.client.protocol.RequestAuthCache - Auth cache not set in the context
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.client.protocol.RequestTargetAuthentication - Target auth state: UNCHALLENGED
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.client.protocol.RequestProxyAuthentication - Proxy auth state: UNCHALLENGED
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.impl.client.DefaultHttpClient - Attempt 1 to execute request
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.impl.conn.DefaultClientConnection - Sending request: POST /emulator/start HTTP/1.1
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "POST /emulator/start HTTP/1.1[\r][\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "Accept: */*[\r][\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "Content-Type: application/json; charset=UTF-8[\r][\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "Content-Length: 449[\r][\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "Host: 10.48.213.53:8090[\r][\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "Connection: Keep-Alive[\r][\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.10)[\r][\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "Accept-Encoding: gzip,deflate[\r][\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "[\r][\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.headers - >> POST /emulator/start HTTP/1.1
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.headers - >> Accept: */*
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.headers - >> Content-Type: application/json; charset=UTF-8
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.headers - >> Content-Length: 449
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.headers - >> Host: 10.48.213.53:8090
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.headers - >> Connection: Keep-Alive
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.headers - >> User-Agent: Apache-HttpClient/4.5.13 (Java/11.0.10)
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.headers - >> Accept-Encoding: gzip,deflate
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "{[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "  "wait-for-connected": true,[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "  "server": {[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "  "url": "https://zsbp-device.zpc-stage.zebra.com/weblink/zsbp/connect/"[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "  },  "devices": {[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "    "prefix":"Node3",[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "    "count": 1,[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "    "max-start-delay": "1",[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "    "min-start-delay": "1",[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "    "ttl": -1,[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "    "ssl": true,[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "    "customer-id": "2fbe7d7e-e9ca-4a0e-bf72-40178e475b2c",[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "    "personality": {[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "      "model": "ZSB-DP12",[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "      "dpi": 300,[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "      "weblink-protocol": "v3.weblink.zebra.com"[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "    }[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "  }[\n]"
11:01:06.856 [TestNG-tests-1] DEBUG org.apache.http.wire -  >> "}"
11:01:06.872 [TestNG-tests-1] DEBUG org.apache.http.wire -  << "HTTP/1.1 409 Conflict[\r][\n]"
11:01:06.872 [TestNG-tests-1] DEBUG org.apache.http.wire -  << "Server: akka-http/10.2.4[\r][\n]"
11:01:06.872 [TestNG-tests-1] DEBUG org.apache.http.wire -  << "Date: Fri, 19 Nov 2021 02:59:32 GMT[\r][\n]"
11:01:06.872 [TestNG-tests-1] DEBUG org.apache.http.wire -  << "Content-Type: text/plain; charset=UTF-8[\r][\n]"
11:01:06.872 [TestNG-tests-1] DEBUG org.apache.http.wire -  << "Content-Length: 44[\r][\n]"
11:01:06.872 [TestNG-tests-1] DEBUG org.apache.http.wire -  << "[\r][\n]"
11:01:06.872 [TestNG-tests-1] DEBUG org.apache.http.impl.conn.DefaultClientConnection - Receiving response: HTTP/1.1 409 Conflict
11:01:06.872 [TestNG-tests-1] DEBUG org.apache.http.headers - << HTTP/1.1 409 Conflict
11:01:06.872 [TestNG-tests-1] DEBUG org.apache.http.headers - << Server: akka-http/10.2.4
11:01:06.872 [TestNG-tests-1] DEBUG org.apache.http.headers - << Date: Fri, 19 Nov 2021 02:59:32 GMT
11:01:06.872 [TestNG-tests-1] DEBUG org.apache.http.headers - << Content-Type: text/plain; charset=UTF-8
11:01:06.872 [TestNG-tests-1] DEBUG org.apache.http.headers - << Content-Length: 44
11:01:06.872 [TestNG-tests-1] DEBUG org.apache.http.impl.client.DefaultHttpClient - Connection can be kept alive indefinitely
11:01:06.888 [TestNG-tests-1] DEBUG io.restassured.internal.RequestSpecificationImpl$RestAssuredHttpBuilder - Parsing response as: text/plain; charset=UTF-8
11:01:06.888 [TestNG-tests-1] DEBUG io.restassured.internal.RequestSpecificationImpl$RestAssuredHttpBuilder - Parsed data to instance of: class org.apache.http.conn.EofSensorInputStream
11:01:06.905 [TestNG-tests-1] DEBUG org.apache.http.wire -  << "Device group for prefix Node3 already exists"
11:01:06.905 [TestNG-tests-1] DEBUG org.apache.http.impl.conn.BasicClientConnectionManager - Releasing connection org.apache.http.impl.conn.ManagedClientConnectionImpl@72b0005f
11:01:06.905 [TestNG-tests-1] DEBUG org.apache.http.impl.conn.BasicClientConnectionManager - Connection can be kept alive indefinitely
Browser:chrome
Browser Version:96.0.4664.45
OS:Windows 10
OS Version:10.0
11:01:06.906 [Forwarding maximizeCurrentWindow on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/window/current/maximize'
11:01:06.906 [Forwarding maximizeCurrentWindow on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/window/current/maximize'
11:01:07.059 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/window/current/maximize HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-77a15685ddb51e1f1af4e72c28988bc3-72e65e735b0eeef5-01
Content-Length: 54
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:52:32 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 158

11:01:07.059 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:07.075 [Forwarding get on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/url'
11:01:07.075 [Forwarding get on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/url'
11:01:39.481 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/url HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-0644ef911d996da0d22a1ac99b025061-e4716f9f146886c5-01
Content-Length: 64
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:52:32 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 158

11:01:39.481 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:39.481 [Forwarding setTimeout on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/timeouts'
11:01:39.481 [Forwarding setTimeout on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/timeouts'
11:01:39.497 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/timeouts HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-5d8f965a73ad22fbc0d91913eb2a7b38-5a4e74e222cf50ee-01
Content-Length: 38
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:04 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 159

11:01:39.497 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:39.497 [Forwarding getTitle on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'GET' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title'
11:01:39.497 [Forwarding getTitle on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for GET '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title'
11:01:39.513 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultFullHttpRequest(decodeResult: success, version: HTTP/1.1, content: EmptyByteBufBE)
GET /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
Cache-Control: no-cache
traceparent: 00-eb8b9b6e5737b6d0afd33d7a991e552e-b3a181cfde6e77b1-01
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:04 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 185

11:01:39.513 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:40.028 [Forwarding getTitle on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'GET' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title'
11:01:40.028 [Forwarding getTitle on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for GET '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title'
11:01:40.044 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultFullHttpRequest(decodeResult: success, version: HTTP/1.1, content: EmptyByteBufBE)
GET /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
Cache-Control: no-cache
traceparent: 00-157b6078b893d2c644e441e64ac5eae5-8a02186494609711-01
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:05 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 186

11:01:40.044 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:40.216 [AsyncHttpClient-1-1] DEBUG org.asynchttpclient.netty.channel.DefaultChannelPool - Entry count for : http://10.48.212.35:5555 : 1
11:01:40.544 [Forwarding getTitle on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'GET' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title'
11:01:40.544 [Forwarding getTitle on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for GET '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title'
11:01:40.560 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultFullHttpRequest(decodeResult: success, version: HTTP/1.1, content: EmptyByteBufBE)
GET /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
Cache-Control: no-cache
traceparent: 00-ee3694cba7abe80941e9ee4d64d0bee0-37a85e925897cfdf-01
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:05 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 187

11:01:40.560 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:41.075 [Forwarding getTitle on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'GET' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title'
11:01:41.075 [Forwarding getTitle on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for GET '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title'
11:01:41.091 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultFullHttpRequest(decodeResult: success, version: HTTP/1.1, content: EmptyByteBufBE)
GET /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
Cache-Control: no-cache
traceparent: 00-519997fa7d0a3dcf0fb2c07476eb9813-ecce16552775c165-01
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:06 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 186

11:01:41.091 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:41.309 [AsyncHttpClient-1-1] DEBUG org.asynchttpclient.netty.channel.DefaultChannelPool - Entry count for : http://10.48.212.35:5555 : 1
11:01:41.606 [Forwarding getTitle on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'GET' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title'
11:01:41.606 [Forwarding getTitle on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for GET '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title'
11:01:41.622 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultFullHttpRequest(decodeResult: success, version: HTTP/1.1, content: EmptyByteBufBE)
GET /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
Cache-Control: no-cache
traceparent: 00-17f7975db4ffe9e5feff1bfd4a563e3c-21d7accccae31ae1-01
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:06 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 187

11:01:41.622 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:42.137 [Forwarding getTitle on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'GET' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title'
11:01:42.137 [Forwarding getTitle on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for GET '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title'
11:01:49.407 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultFullHttpRequest(decodeResult: success, version: HTTP/1.1, content: EmptyByteBufBE)
GET /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/title HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
Cache-Control: no-cache
traceparent: 00-7be17c8dcd40e632a2a284b949ce10ef-2feb768039b3cde3-01
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:07 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 164

11:01:49.407 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:49.422 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:01:49.422 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:01:49.435 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-678f947651aeb6d1f7f669f2bd9e50f0-9b844d10bc879fc9-01
Content-Length: 66
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:14 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 169

11:01:49.435 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:49.435 [Forwarding isElementDisplayed on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'GET' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/displayed'
11:01:49.435 [Forwarding isElementDisplayed on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for GET '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/displayed'
11:01:49.466 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultFullHttpRequest(decodeResult: success, version: HTTP/1.1, content: EmptyByteBufBE)
GET /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/displayed HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
Cache-Control: no-cache
traceparent: 00-7ea503c0d8e4e4409780ee5fb626ec83-d3e87eaccc475089-01
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:14 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 158

11:01:49.466 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
*** Input SOHO login [ZebraAutomationManual@outlook.com] credentials. ***
11:01:49.466 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:01:49.466 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:01:49.497 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-bea1fe32b6038683ddae534bc729c517-a54b94986d180a61-01
Content-Length: 66
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:14 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 169

11:01:49.497 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:49.497 [Forwarding isElementDisplayed on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'GET' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/displayed'
11:01:49.497 [Forwarding isElementDisplayed on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for GET '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/displayed'
11:01:49.528 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultFullHttpRequest(decodeResult: success, version: HTTP/1.1, content: EmptyByteBufBE)
GET /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/displayed HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
Cache-Control: no-cache
traceparent: 00-fb55d7f7657a3ffdb1f66dda6736e435-719351a26e97cd08-01
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:14 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 158

11:01:49.528 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:49.528 [Forwarding isElementEnabled on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'GET' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/enabled'
11:01:49.528 [Forwarding isElementEnabled on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for GET '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/enabled'
11:01:49.559 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultFullHttpRequest(decodeResult: success, version: HTTP/1.1, content: EmptyByteBufBE)
GET /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/enabled HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
Cache-Control: no-cache
traceparent: 00-2e081023c6e0a6fae97a9a57ec124b10-92c05b02dfb68264-01
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:14 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 159

11:01:49.559 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:49.559 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:01:49.559 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:01:49.591 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-3e31e9e8cd1de21fd053f9b63f1dc634-b32831087f985087-01
Content-Length: 66
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:14 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 170

11:01:49.591 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:49.591 [Forwarding clickElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/click'
11:01:49.591 [Forwarding clickElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/click'
11:01:49.653 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/click HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-044eff9345441cba8f5bcfd4917cf3b4-87aa1e00785bee24-01
Content-Length: 15
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:14 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 159

11:01:49.653 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:49.653 [Forwarding sendKeysToElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/value'
11:01:49.653 [Forwarding sendKeysToElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/value'
11:01:49.684 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/value HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-e3c9b7e1738083a0b94d23c19ca65ae1-de084d6de3b451ce-01
Content-Length: 40
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:15 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 159

11:01:49.684 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:49.684 [Forwarding sendKeysToElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/value'
11:01:49.684 [Forwarding sendKeysToElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/value'
11:01:49.763 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/0/value HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-b5a5517d004acba392294f425df7e896-9522fe7cdddb1777-01
Content-Length: 73
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:15 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 158

11:01:49.763 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:49.763 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:01:49.763 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:01:49.809 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-890353bee14b53cb001641a6f619dede-49bd4228cdc37a34-01
Content-Length: 66
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:15 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 169

11:01:49.809 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:49.809 [Forwarding isElementDisplayed on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'GET' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/1/displayed'
11:01:49.809 [Forwarding isElementDisplayed on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for GET '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/1/displayed'
11:01:49.841 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultFullHttpRequest(decodeResult: success, version: HTTP/1.1, content: EmptyByteBufBE)
GET /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/1/displayed HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
Cache-Control: no-cache
traceparent: 00-2c7a4865f0872fb4d3d5f18da2e96769-ca10ac9e2d0ebf77-01
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:15 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 158

11:01:49.841 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:49.841 [Forwarding isElementEnabled on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'GET' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/1/enabled'
11:01:49.841 [Forwarding isElementEnabled on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for GET '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/1/enabled'
11:01:49.856 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultFullHttpRequest(decodeResult: success, version: HTTP/1.1, content: EmptyByteBufBE)
GET /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/1/enabled HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
Cache-Control: no-cache
traceparent: 00-4df85cfbd55c216bfcd3c02aac84b50e-5e5328766d505592-01
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:15 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 159

11:01:49.856 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:49.856 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:01:49.872 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:01:49.905 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-822fb14166e36b63506f5115d7d3657b-2f7281c08e489a04-01
Content-Length: 66
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:15 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 170

11:01:49.905 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:49.906 [Forwarding clickElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/1/click'
11:01:49.906 [Forwarding clickElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/1/click'
11:01:49.950 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/1/click HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-cb7f43d8971c4f781af79d7e18f60bc7-336140988e710928-01
Content-Length: 15
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:15 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 158

11:01:49.950 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:49.950 [Forwarding sendKeysToElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/1/value'
11:01:49.950 [Forwarding sendKeysToElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/1/value'
11:01:49.981 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/1/value HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-01a87280b59a311aa5ca71f58467c46b-39585ba690124905-01
Content-Length: 40
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:15 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 158

11:01:49.981 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:49.981 [Forwarding sendKeysToElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/1/value'
11:01:49.981 [Forwarding sendKeysToElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/1/value'
11:01:50.028 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/1/value HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-1ac0e091dfa0ee66b2b11de4ea651d45-1bd7dc042a1134b0-01
Content-Length: 52
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:15 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 158

11:01:50.028 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:50.028 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:01:50.028 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:01:50.059 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-059ea3c26aed14a9cf4e6e629d652920-7832803fd67dadbb-01
Content-Length: 83
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:15 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 169

11:01:50.059 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:50.059 [Forwarding isElementDisplayed on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'GET' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/2/displayed'
11:01:50.059 [Forwarding isElementDisplayed on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for GET '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/2/displayed'
11:01:50.091 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultFullHttpRequest(decodeResult: success, version: HTTP/1.1, content: EmptyByteBufBE)
GET /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/2/displayed HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
Cache-Control: no-cache
traceparent: 00-fa52585e682b966b14c640680aa705dd-3c2ae2b4a535db19-01
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:15 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 158

11:01:50.091 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:50.091 [Forwarding isElementEnabled on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'GET' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/2/enabled'
11:01:50.091 [Forwarding isElementEnabled on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for GET '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/2/enabled'
11:01:50.106 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultFullHttpRequest(decodeResult: success, version: HTTP/1.1, content: EmptyByteBufBE)
GET /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/2/enabled HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
Cache-Control: no-cache
traceparent: 00-b1dc01492fd66cc620f18f2e137b23af-bfb5d1001abdbdc5-01
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:15 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 158

11:01:50.106 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:50.122 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:01:50.122 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:01:50.122 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-6475266cedb0a62f27bbf1c8d61c4068-127522482ae9581d-01
Content-Length: 83
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:15 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 169

11:01:50.122 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:01:50.137 [Forwarding clickElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/2/click'
11:01:50.137 [Forwarding clickElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/2/click'
11:01:55.106 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element/2/click HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-1f12b3d731536eb687f863fe3ee05196-0a192887e74fa03b-01
Content-Length: 15
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2021 02:53:15 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 159
11:04:49.138 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]
11:04:49.406 [AsyncHttpClient-1-1] DEBUG org.asynchttpclient.netty.channel.DefaultChannelPool - Entry count for : http://10.48.212.35:5555 : 1
11:04:49.653 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using pooled Channel '[id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]' for 'POST' to 'http://10.48.212.35:5555/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:04:49.653 [Forwarding findElement on session b2d53e8e-fbb5-4021-a77f-2b0faea54b9e to remote] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Using open Channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555] for POST '/wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element'
11:04:50.856 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - 

Request DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
POST /wd/hub/session/b2d53e8e-fbb5-4021-a77f-2b0faea54b9e/element HTTP/1.1
User-Agent: selenium/4.0.0 (java windows)
traceparent: 00-b4095a6a3554ffcccbd98c2d7ba0b616-4c8833c0d3f36f64-01
Content-Length: 86
Content-Type: application/json; charset=utf-8
host: 10.48.212.35:5555
accept: */*

Response DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 500 Internal Server Error
Date: Fri, 19 Nov 2021 02:56:15 GMT
Server: Jetty/5.1.x (Windows 10/10.0 amd64 java/11.0.10
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Cache-Control: no-cache
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: application/json; charset=utf-8
content-length: 217753

11:04:50.856 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Adding key: http://10.48.212.35:5555 for channel [id: 0xdcb343ec, L:/10.48.212.91:53440 - R:/10.48.212.35:5555]

org.openqa.selenium.TimeoutException: Expected condition failed: waiting for visibility of element located by By.xpath: //a[@data-testid='label-templates-nav'] (tried for 60 second(s) with 500 milliseconds interval)
Build info: version: '4.0.0', revision: '3a21814679'
System info: host: 'ZBR-1CZ01502PR', ip: '10.48.212.91', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '11.0.10'
Driver info: org.openqa.selenium.remote.RemoteWebDriver
Capabilities {acceptInsecureCerts: false, acceptSslCerts: false, applicationCacheEnabled: false, browserConnectionEnabled: false, browserName: chrome, chrome: {chromedriverVersion: 95.0.4638.69 (6a1600ed572fe..., userDataDir: C:\Users\tester\AppData\Loc...}, cssSelectorsEnabled: true, databaseEnabled: false, goog:chromeOptions: {debuggerAddress: localhost:56503}, handlesAlerts: true, hasTouchScreen: false, javascriptEnabled: true, locationContextEnabled: true, mobileEmulationEnabled: false, nativeEvents: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: XP, platformName: XP, proxy: Proxy(), rotatable: false, setWindowRect: true, strictFileInteractability: false, takesHeapSnapshot: true, takesScreenshot: true, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unexpectedAlertBehaviour: ignore, unhandledPromptBehavior: ignore, version: 96.0.4664.45, webStorageEnabled: true, webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:virtualAuthenticators: true, webdriver.remote.sessionid: b2d53e8e-fbb5-4021-a77f-2b0...}
Session ID: b2d53e8e-fbb5-4021-a77f-2b0faea54b9e

    at org.openqa.selenium.support.ui.WebDriverWait.timeoutException(WebDriverWait.java:138)
    at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:231)
    at Common.Wait.WaitUntilElementIsVisible(Wait.java:18)
    at PageObject.Home.HomePage.clickMenu(HomePage.java:115)
    at PageObject.Home.HomePage.clickMyDesigns(HomePage.java:189)
    at TestScripts.Common.TemplateUtilities.goToMyDesignsAndWaitLoaded(TemplateUtilities.java:250)
    at TestScripts.LoginAndLDAParallelTest.tearDown(LoginAndLDAParallelTest.java:317)
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:566)
    at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:133)
    at org.testng.internal.MethodInvocationHelper.invokeMethodConsideringTimeout(MethodInvocationHelper.java:62)
    at org.testng.internal.ConfigInvoker.invokeConfigurationMethod(ConfigInvoker.java:385)
    at org.testng.internal.ConfigInvoker.invokeConfigurations(ConfigInvoker.java:321)
    at org.testng.TestRunner.invokeTestConfigurations(TestRunner.java:637)
    at org.testng.TestRunner.afterRun(TestRunner.java:877)
    at org.testng.TestRunner.run(TestRunner.java:599)
    at org.testng.SuiteRunner.runTest(SuiteRunner.java:377)
    at org.testng.SuiteRunner.access$000(SuiteRunner.java:28)
    at org.testng.SuiteRunner$SuiteWorker.run(SuiteRunner.java:418)
    at org.testng.internal.thread.ThreadUtil.lambda$execute$0(ThreadUtil.java:64)
    at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
    at java.base/java.lang.Thread.run(Thread.java:834)

Operating System

Windows 10

Selenium version

Java 4.0

What are the browser(s) and version(s) where you see this issue?

Chrome 95.0.4638.69

What are the browser driver(s) and version(s) where you see this issue?

ChromeDriver 95.0.4638.69

Are you using Selenium Grid?

selenium-server-standalone-2.53.1.

github-actions[bot] commented 2 years ago

@enrico-j-yang, thank you for creating this issue. We will troubleshoot it as soon as we can.


Info for maintainers

Triage this issue by using labels.

If information is missing, add a helpful comment and then I-issue-template label.

If the issue is a question, add the I-question label.

If the issue is valid but there is no time to troubleshoot it, consider adding the help wanted label.

If the issue requires changes or fixes from an external project (e.g., ChromeDriver, GeckoDriver, W3C), add the applicable G-* label, and it will provide the correct link and auto-close the issue.

After troubleshooting the issue, please add the R-awaiting answer label.

Thank you!

github-actions[bot] commented 2 years ago

💬 Please ask questions at:

github-actions[bot] commented 2 years ago

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.