Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

java.lang.NullPointerException after trying create @CastMember #2764

Closed
anhphan-cwvn opened this issue Apr 1, 2022 · 5 comments
Closed

java.lang.NullPointerException after trying create @CastMember #2764

anhphan-cwvn opened this issue Apr 1, 2022 · 5 comments

Comments

@anhphan-cwvn
Copy link

My project is upgraded from serenity-core 2.0.81 to 3.2.0

pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>bellFace.automation.screenplay</groupId>
    <artifactId>bellFace-automation-screenplay</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>Sample Serenity project using Cucumber and WebDriver</name>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <serenity.version>3.2.0</serenity.version>
        <junit5.version>5.8.2</junit5.version>
        <tags></tags>
        <parallel.tests>4</parallel.tests>
        <webdriver.base.url></webdriver.base.url>
    </properties>
    <dependencies>
        <dependency>
            <groupId>io.appium</groupId>
            <artifactId>java-client</artifactId>
            <version>8.0.0</version>
        </dependency>
        <dependency>
            <groupId>net.serenity-bdd</groupId>
            <artifactId>serenity-core</artifactId>
            <version>${serenity.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>net.serenity-bdd</groupId>
            <artifactId>serenity-junit5</artifactId>
            <version>${serenity.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>net.serenity-bdd</groupId>
            <artifactId>serenity-screenplay</artifactId>
            <version>${serenity.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>net.serenity-bdd</groupId>
            <artifactId>serenity-ensure</artifactId>
            <version>${serenity.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>net.serenity-bdd</groupId>
            <artifactId>serenity-screenplay-webdriver</artifactId>
            <version>${serenity.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <version>1.2.10</version>
        </dependency>
        <!-- JUNIT 5 DEPENDENCY-->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>${junit5.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>${junit5.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.assertj</groupId>
            <artifactId>assertj-core</artifactId>
            <version>3.22.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>io.rest-assured</groupId>
            <artifactId>rest-assured</artifactId>
            <version>4.5.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.googlecode.json-simple</groupId>
            <artifactId>json-simple</artifactId>
            <version>1.1.1</version>
        </dependency>
        <dependency>
            <groupId>com.jayway.jsonpath</groupId>
            <artifactId>json-path</artifactId>
            <version>2.7.0</version>
        </dependency>
        <dependency>
            <groupId>com.google.api-client</groupId>
            <artifactId>google-api-client</artifactId>
            <version>1.33.2</version>
        </dependency>
        <dependency>
            <groupId>com.google.gdata</groupId>
            <artifactId>core</artifactId>
            <version>1.47.1</version>
        </dependency>
        <dependency>
            <groupId>com.google.apis</groupId>
            <artifactId>google-api-services-sheets</artifactId>
            <version>v4-rev20220221-1.32.1</version>
        </dependency>
        <dependency>
            <groupId>com.google.apis</groupId>
            <artifactId>google-api-services-drive</artifactId>
            <version>v3-rev20220214-1.32.1</version>
        </dependency>
        <dependency>
            <groupId>com.konghq</groupId>
            <artifactId>unirest-java</artifactId>
            <version>3.13.7</version>
        </dependency>
        <dependency>
            <groupId>com.sikulix</groupId>
            <artifactId>sikulixapi</artifactId>
            <version>2.0.5</version>
        </dependency>
        <dependency>
            <groupId>net.sourceforge.tess4j</groupId>
            <artifactId>tess4j</artifactId>
            <version>5.1.1</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>3.0.0-M4</version>
                <configuration>
                    <skip>true</skip>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-failsafe-plugin</artifactId>
                <version>3.0.0-M5</version>
                <configuration>
                    <includes>
                        <include>**/*Test.java</include>
                        <include>**/Test*.java</include>
                        <include>**/*TestSuite.java</include>
                        <include>**/When*.java</include>
                    </includes>
                    <systemPropertyVariables>
                        <webdriver.base.url>${webdriver.base.url}</webdriver.base.url>
                        <junit.jupiter.extensions.autodetection.enabled>true</junit.jupiter.extensions.autodetection.enabled>
                    </systemPropertyVariables>
                    <parallel>classes</parallel>
                    <threadCount>${parallel.tests}</threadCount>
                    <forkCount>${parallel.tests}</forkCount>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>integration-test</goal>
                            <goal>verify</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.7.0</version>
                <configuration>
                    <source>11</source>
                    <target>11</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>net.serenity-bdd.maven.plugins</groupId>
                <artifactId>serenity-maven-plugin</artifactId>
                <version>${serenity.version}</version>
                <configuration>
                    <tags>${tags}</tags>
                </configuration>
                <executions>
                    <execution>
                        <id>serenity-reports</id>
                        <phase>post-integration-test</phase>
                        <goals>
                            <goal>aggregate</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

serenity.conf:

webdriver {
  provided.type = mydriver
  provided.mydriver = automation.utils.CustomChromeDriver
}

I have tried to execute this script by myself:

package bellFace.automation.tests.denwaShoudan;

import net.serenitybdd.junit5.SerenityJUnit5Extension;
import net.serenitybdd.screenplay.Actor;
import net.serenitybdd.screenplay.actions.Open;
import net.serenitybdd.screenplay.annotations.CastMember;
import org.junit.Test;
import org.junit.jupiter.api.extension.ExtendWith;

@ExtendWith(SerenityJUnit5Extension.class)
public class NewVerTests {

    @CastMember(name = "Anh")
    public Actor anh;

    @Test
    public void test(){
        anh.attemptsTo(Open.url("https://24h.com.vn"));
    }
}

Then an error showed:

java.lang.NullPointerException
	at bellFace.automation.tests.denwaShoudan.NewVerTests.test(NewVerTests.java:18)
	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.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:45)
	at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
	at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:42)
	at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
	at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263)
	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:68)
	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:47)
	at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
	at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60)
	at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229)
	at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50)
	at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222)
	at org.junit.runners.ParentRunner.run(ParentRunner.java:300)
	at org.junit.runner.JUnitCore.run(JUnitCore.java:157)
	at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:69)
	at com.intellij.rt.junit.IdeaTestRunner$Repeater$1.execute(IdeaTestRunner.java:38)
	at com.intellij.rt.execution.junit.TestsRepeater.repeat(TestsRepeater.java:11)
	at com.intellij.rt.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:35)
	at com.intellij.rt.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:235)
	at com.intellij.rt.junit.JUnitStarter.main(JUnitStarter.java:54)
@wakaleo
Copy link
Member

wakaleo commented Apr 1, 2022

You are using the JUnit 4 @test annotation with the JUnit 5 extension - you need to use the JUnit 5 @test annotation.

@anhphan-cwvn
Copy link
Author

anhphan-cwvn commented Apr 1, 2022

After changing to JUnit5 import org.junit.jupiter.api.Test;

I tried to re-execute the script, but:

/Users/anhphan/.sdkman/candidates/java/11.0.12.7.1-ms/bin/java -ea -Dwebdriver.base.url -Djunit.jupiter.extensions.autodetection.enabled=true -Didea.test.cyclic.buffer.size=1048576 -javaagent:/Applications/IntelliJ IDEA CE.app/Contents/lib/idea_rt.jar=52828:/Applications/IntelliJ IDEA CE.app/Contents/bin -Dfile.encoding=UTF-8 -classpath /Applications/IntelliJ IDEA CE.app/Contents/lib/idea_rt.jar:/Applications/IntelliJ IDEA CE.app/Contents/plugins/junit/lib/junit5-rt.jar:/Applications/IntelliJ IDEA CE.app/Contents/plugins/junit/lib/junit-rt.jar:/Users/anhphan/Documents/Projects/xxx-Automation/cowell-test-automation/target/test-classes:/Users/anhphan/.m2/repository/io/appium/java-client/8.0.0/java-client-8.0.0.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-api/4.1.3/selenium-api-4.1.3.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-remote-driver/4.1.3/selenium-remote-driver-4.1.3.jar:/Users/anhphan/.m2/repository/com/beust/jcommander/1.82/jcommander-1.82.jar:/Users/anhphan/.m2/repository/com/google/auto/service/auto-service-annotations/1.0.1/auto-service-annotations-1.0.1.jar:/Users/anhphan/.m2/repository/com/google/auto/service/auto-service/1.0.1/auto-service-1.0.1.jar:/Users/anhphan/.m2/repository/com/google/auto/auto-common/1.2/auto-common-1.2.jar:/Users/anhphan/.m2/repository/io/netty/netty-buffer/4.1.75.Final/netty-buffer-4.1.75.Final.jar:/Users/anhphan/.m2/repository/io/netty/netty-codec-http/4.1.75.Final/netty-codec-http-4.1.75.Final.jar:/Users/anhphan/.m2/repository/io/netty/netty-common/4.1.75.Final/netty-common-4.1.75.Final.jar:/Users/anhphan/.m2/repository/io/netty/netty-transport-classes-epoll/4.1.75.Final/netty-transport-classes-epoll-4.1.75.Final.jar:/Users/anhphan/.m2/repository/io/netty/netty-transport-classes-kqueue/4.1.75.Final/netty-transport-classes-kqueue-4.1.75.Final.jar:/Users/anhphan/.m2/repository/io/netty/netty-transport-native-epoll/4.1.75.Final/netty-transport-native-epoll-4.1.75.Final.jar:/Users/anhphan/.m2/repository/io/netty/netty-transport-native-kqueue/4.1.75.Final/netty-transport-native-kqueue-4.1.75.Final.jar:/Users/anhphan/.m2/repository/io/netty/netty-transport-native-unix-common/4.1.75.Final/netty-transport-native-unix-common-4.1.75.Final.jar:/Users/anhphan/.m2/repository/io/netty/netty-transport/4.1.75.Final/netty-transport-4.1.75.Final.jar:/Users/anhphan/.m2/repository/io/opentelemetry/opentelemetry-api/1.12.0/opentelemetry-api-1.12.0.jar:/Users/anhphan/.m2/repository/io/opentelemetry/opentelemetry-context/1.12.0/opentelemetry-context-1.12.0.jar:/Users/anhphan/.m2/repository/io/opentelemetry/opentelemetry-exporter-logging/1.12.0/opentelemetry-exporter-logging-1.12.0.jar:/Users/anhphan/.m2/repository/io/opentelemetry/opentelemetry-sdk-metrics/1.12.0-alpha/opentelemetry-sdk-metrics-1.12.0-alpha.jar:/Users/anhphan/.m2/repository/io/opentelemetry/opentelemetry-sdk-logs/1.12.0-alpha/opentelemetry-sdk-logs-1.12.0-alpha.jar:/Users/anhphan/.m2/repository/io/opentelemetry/opentelemetry-sdk-common/1.12.0/opentelemetry-sdk-common-1.12.0.jar:/Users/anhphan/.m2/repository/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.12.0/opentelemetry-sdk-extension-autoconfigure-spi-1.12.0.jar:/Users/anhphan/.m2/repository/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure/1.12.0-alpha/opentelemetry-sdk-extension-autoconfigure-1.12.0-alpha.jar:/Users/anhphan/.m2/repository/io/opentelemetry/opentelemetry-sdk-trace/1.12.0/opentelemetry-sdk-trace-1.12.0.jar:/Users/anhphan/.m2/repository/io/opentelemetry/opentelemetry-sdk/1.12.0/opentelemetry-sdk-1.12.0.jar:/Users/anhphan/.m2/repository/io/opentelemetry/opentelemetry-semconv/1.12.0-alpha/opentelemetry-semconv-1.12.0-alpha.jar:/Users/anhphan/.m2/repository/io/ous/jtoml/2.0.0/jtoml-2.0.0.jar:/Users/anhphan/.m2/repository/net/bytebuddy/byte-buddy/1.12.8/byte-buddy-1.12.8.jar:/Users/anhphan/.m2/repository/org/asynchttpclient/async-http-client/2.12.3/async-http-client-2.12.3.jar:/Users/anhphan/.m2/repository/org/asynchttpclient/async-http-client-netty-utils/2.12.3/async-http-client-netty-utils-2.12.3.jar:/Users/anhphan/.m2/repository/io/netty/netty-codec-socks/4.1.60.Final/netty-codec-socks-4.1.60.Final.jar:/Users/anhphan/.m2/repository/io/netty/netty-handler-proxy/4.1.60.Final/netty-handler-proxy-4.1.60.Final.jar:/Users/anhphan/.m2/repository/io/netty/netty-transport-native-epoll/4.1.60.Final/netty-transport-native-epoll-4.1.60.Final-linux-x86_64.jar:/Users/anhphan/.m2/repository/io/netty/netty-transport-native-kqueue/4.1.60.Final/netty-transport-native-kqueue-4.1.60.Final-osx-x86_64.jar:/Users/anhphan/.m2/repository/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar:/Users/anhphan/.m2/repository/com/typesafe/netty/netty-reactive-streams/2.0.4/netty-reactive-streams-2.0.4.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-http/4.1.3/selenium-http-4.1.3.jar:/Users/anhphan/.m2/repository/dev/failsafe/failsafe/3.2.3/failsafe-3.2.3.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-json/4.1.3/selenium-json-4.1.3.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-support/4.1.3/selenium-support-4.1.3.jar:/Users/anhphan/.m2/repository/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar:/Users/anhphan/.m2/repository/commons-codec/commons-codec/1.15/commons-codec-1.15.jar:/Users/anhphan/.m2/repository/cglib/cglib/3.3.0/cglib-3.3.0.jar:/Users/anhphan/.m2/repository/org/ow2/asm/asm/7.1/asm-7.1.jar:/Users/anhphan/.m2/repository/commons-validator/commons-validator/1.7/commons-validator-1.7.jar:/Users/anhphan/.m2/repository/commons-digester/commons-digester/2.1/commons-digester-2.1.jar:/Users/anhphan/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/Users/anhphan/.m2/repository/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:/Users/anhphan/.m2/repository/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar:/Users/anhphan/.m2/repository/org/springframework/spring-context/5.3.16/spring-context-5.3.16.jar:/Users/anhphan/.m2/repository/org/springframework/spring-aop/5.3.16/spring-aop-5.3.16.jar:/Users/anhphan/.m2/repository/org/springframework/spring-beans/5.3.16/spring-beans-5.3.16.jar:/Users/anhphan/.m2/repository/org/springframework/spring-expression/5.3.16/spring-expression-5.3.16.jar:/Users/anhphan/.m2/repository/org/aspectj/aspectjweaver/1.9.8/aspectjweaver-1.9.8.jar:/Users/anhphan/.m2/repository/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar:/Users/anhphan/.m2/repository/net/serenity-bdd/serenity-core/3.2.1/serenity-core-3.2.1.jar:/Users/anhphan/.m2/repository/net/serenity-bdd/serenity-model/3.2.1/serenity-model-3.2.1.jar:/Users/anhphan/.m2/repository/org/apache/commons/commons-text/1.9/commons-text-1.9.jar:/Users/anhphan/.m2/repository/commons-net/commons-net/3.8.0/commons-net-3.8.0.jar:/Users/anhphan/.m2/repository/com/google/inject/guice/5.1.0/guice-5.1.0.jar:/Users/anhphan/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar:/Users/anhphan/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar:/Users/anhphan/.m2/repository/org/jsoup/jsoup/1.14.3/jsoup-1.14.3.jar:/Users/anhphan/.m2/repository/com/thoughtworks/xstream/xstream/1.4.19/xstream-1.4.19.jar:/Users/anhphan/.m2/repository/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.jar:/Users/anhphan/.m2/repository/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.jar:/Users/anhphan/.m2/repository/io/cucumber/cucumber-core/7.2.3/cucumber-core-7.2.3.jar:/Users/anhphan/.m2/repository/io/cucumber/cucumber-gherkin/7.2.3/cucumber-gherkin-7.2.3.jar:/Users/anhphan/.m2/repository/io/cucumber/cucumber-gherkin-messages/7.2.3/cucumber-gherkin-messages-7.2.3.jar:/Users/anhphan/.m2/repository/io/cucumber/messages/17.1.1/messages-17.1.1.jar:/Users/anhphan/.m2/repository/io/cucumber/tag-expressions/4.1.0/tag-expressions-4.1.0.jar:/Users/anhphan/.m2/repository/io/cucumber/cucumber-expressions/15.0.1/cucumber-expressions-15.0.1.jar:/Users/anhphan/.m2/repository/io/cucumber/datatable/7.2.3/datatable-7.2.3.jar:/Users/anhphan/.m2/repository/io/cucumber/cucumber-plugin/7.2.3/cucumber-plugin-7.2.3.jar:/Users/anhphan/.m2/repository/io/cucumber/docstring/7.2.3/docstring-7.2.3.jar:/Users/anhphan/.m2/repository/io/cucumber/html-formatter/17.0.0/html-formatter-17.0.0.jar:/Users/anhphan/.m2/repository/io/cucumber/ci-environment/8.1.0/ci-environment-8.1.0.jar:/Users/anhphan/.m2/repository/io/cucumber/cucumber-java/7.2.3/cucumber-java-7.2.3.jar:/Users/anhphan/.m2/repository/com/typesafe/config/1.4.2/config-1.4.2.jar:/Users/anhphan/.m2/repository/org/imgscalr/imgscalr-lib/4.2/imgscalr-lib-4.2.jar:/Users/anhphan/.m2/repository/org/awaitility/awaitility/4.2.0/awaitility-4.2.0.jar:/Users/anhphan/.m2/repository/org/freemarker/freemarker/2.3.31/freemarker-2.3.31.jar:/Users/anhphan/.m2/repository/io/github/classgraph/classgraph/4.8.138/classgraph-4.8.138.jar:/Users/anhphan/.m2/repository/net/sourceforge/jexcelapi/jxl/2.6.12/jxl-2.6.12.jar:/Users/anhphan/.m2/repository/net/bytebuddy/byte-buddy-agent/1.12.8/byte-buddy-agent-1.12.8.jar:/Users/anhphan/.m2/repository/org/objenesis/objenesis/3.1/objenesis-3.1.jar:/Users/anhphan/.m2/repository/net/serenity-bdd/serenity-reports/3.2.1/serenity-reports-3.2.1.jar:/Users/anhphan/.m2/repository/net/serenity-bdd/serenity-stats/3.2.1/serenity-stats-3.2.1.jar:/Users/anhphan/.m2/repository/net/serenity-bdd/serenity-reports-configuration/3.2.1/serenity-reports-configuration-3.2.1.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-all/0.34.30/flexmark-all-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark/0.34.30/flexmark-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-abbreviation/0.34.30/flexmark-ext-abbreviation-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-admonition/0.34.30/flexmark-ext-admonition-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-anchorlink/0.34.30/flexmark-ext-anchorlink-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-aside/0.34.30/flexmark-ext-aside-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-attributes/0.34.30/flexmark-ext-attributes-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-autolink/0.34.30/flexmark-ext-autolink-0.34.30.jar:/Users/anhphan/.m2/repository/org/nibor/autolink/autolink/0.6.0/autolink-0.6.0.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-definition/0.34.30/flexmark-ext-definition-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-emoji/0.34.30/flexmark-ext-emoji-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-enumerated-reference/0.34.30/flexmark-ext-enumerated-reference-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-escaped-character/0.34.30/flexmark-ext-escaped-character-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-footnotes/0.34.30/flexmark-ext-footnotes-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-gfm-issues/0.34.30/flexmark-ext-gfm-issues-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-gfm-strikethrough/0.34.30/flexmark-ext-gfm-strikethrough-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-gfm-tables/0.34.30/flexmark-ext-gfm-tables-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-gfm-tasklist/0.34.30/flexmark-ext-gfm-tasklist-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-gfm-users/0.34.30/flexmark-ext-gfm-users-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-gitlab/0.34.30/flexmark-ext-gitlab-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-jekyll-front-matter/0.34.30/flexmark-ext-jekyll-front-matter-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-jekyll-tag/0.34.30/flexmark-ext-jekyll-tag-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-media-tags/0.34.30/flexmark-ext-media-tags-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-test-util/0.34.30/flexmark-test-util-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-ins/0.34.30/flexmark-ext-ins-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-xwiki-macros/0.34.30/flexmark-ext-xwiki-macros-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-superscript/0.34.30/flexmark-ext-superscript-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-tables/0.34.30/flexmark-ext-tables-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-toc/0.34.30/flexmark-ext-toc-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-typographic/0.34.30/flexmark-ext-typographic-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-wikilink/0.34.30/flexmark-ext-wikilink-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-yaml-front-matter/0.34.30/flexmark-ext-yaml-front-matter-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-ext-youtube-embedded/0.34.30/flexmark-ext-youtube-embedded-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-formatter/0.34.30/flexmark-formatter-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-html-parser/0.34.30/flexmark-html-parser-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-jira-converter/0.34.30/flexmark-jira-converter-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-pdf-converter/0.34.30/flexmark-pdf-converter-0.34.30.jar:/Users/anhphan/.m2/repository/com/openhtmltopdf/openhtmltopdf-core/0.0.1-RC13/openhtmltopdf-core-0.0.1-RC13.jar:/Users/anhphan/.m2/repository/com/openhtmltopdf/openhtmltopdf-pdfbox/0.0.1-RC13/openhtmltopdf-pdfbox-0.0.1-RC13.jar:/Users/anhphan/.m2/repository/org/apache/pdfbox/xmpbox/2.0.8/xmpbox-2.0.8.jar:/Users/anhphan/.m2/repository/de/rototor/pdfbox/graphics2d/0.12/graphics2d-0.12.jar:/Users/anhphan/.m2/repository/com/openhtmltopdf/openhtmltopdf-rtl-support/0.0.1-RC13/openhtmltopdf-rtl-support-0.0.1-RC13.jar:/Users/anhphan/.m2/repository/com/openhtmltopdf/openhtmltopdf-jsoup-dom-converter/0.0.1-RC13/openhtmltopdf-jsoup-dom-converter-0.0.1-RC13.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-profile-pegdown/0.34.30/flexmark-profile-pegdown-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-util/0.34.30/flexmark-util-0.34.30.jar:/Users/anhphan/.m2/repository/com/vladsch/flexmark/flexmark-youtrack-converter/0.34.30/flexmark-youtrack-converter-0.34.30.jar:/Users/anhphan/.m2/repository/es/nitaur/markdown/txtmark/0.16/txtmark-0.16.jar:/Users/anhphan/.m2/repository/net/serenity-bdd/serenity-report-resources/3.2.1/serenity-report-resources-3.2.1.jar:/Users/anhphan/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.13.2/jackson-core-2.13.2.jar:/Users/anhphan/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.13.2/jackson-databind-2.13.2.jar:/Users/anhphan/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.13.2/jackson-annotations-2.13.2.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-java/4.1.2/selenium-java-4.1.2.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-devtools-v85/4.1.2/selenium-devtools-v85-4.1.2.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-devtools-v95/4.1.2/selenium-devtools-v95-4.1.2.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-devtools-v96/4.1.2/selenium-devtools-v96-4.1.2.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-devtools-v97/4.1.2/selenium-devtools-v97-4.1.2.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-firefox-xpi-driver/4.1.2/selenium-firefox-xpi-driver-4.1.2.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-opera-driver/4.1.2/selenium-opera-driver-4.1.2.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-safari-driver/4.1.2/selenium-safari-driver-4.1.2.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-chrome-driver/4.1.2/selenium-chrome-driver-4.1.2.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-chromium-driver/4.1.2/selenium-chromium-driver-4.1.2.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-firefox-driver/4.1.2/selenium-firefox-driver-4.1.2.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-edge-driver/4.1.2/selenium-edge-driver-4.1.2.jar:/Users/anhphan/.m2/repository/org/seleniumhq/selenium/selenium-ie-driver/4.1.2/selenium-ie-driver-4.1.2.jar:/Users/anhphan/.m2/repository/org/projectlombok/lombok/1.18.20/lombok-1.18.20.jar:/Users/anhphan/.m2/repository/org/codehaus/groovy/groovy/3.0.10/groovy-3.0.10.jar:/Users/anhphan/.m2/repository/net/sf/opencsv/opencsv/2.0/opencsv-2.0.jar:/Users/anhphan/.m2/repository/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar:/Users/anhphan/.m2/repository/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar:/Users/anhphan/.m2/repository/org/fluentlenium/fluentlenium-core/0.10.2/fluentlenium-core-0.10.2.jar:/Users/anhphan/.m2/repository/io/github/bonigarcia/webdrivermanager/5.1.0/webdrivermanager-5.1.0.jar:/Users/anhphan/.m2/repository/com/github/docker-java/docker-java/3.2.13/docker-java-3.2.13.jar:/Users/anhphan/.m2/repository/com/github/docker-java/docker-java-core/3.2.13/docker-java-core-3.2.13.jar:/Users/anhphan/.m2/repository/com/github/docker-java/docker-java-api/3.2.13/docker-java-api-3.2.13.jar:/Users/anhphan/.m2/repository/org/slf4j/jcl-over-slf4j/1.7.30/jcl-over-slf4j-1.7.30.jar:/Users/anhphan/.m2/repository/com/github/docker-java/docker-java-transport-httpclient5/3.2.13/docker-java-transport-httpclient5-3.2.13.jar:/Users/anhphan/.m2/repository/com/github/docker-java/docker-java-transport/3.2.13/docker-java-transport-3.2.13.jar:/Users/anhphan/.m2/repository/org/apache/httpcomponents/client5/httpclient5/5.0.3/httpclient5-5.0.3.jar:/Users/anhphan/.m2/repository/org/apache/httpcomponents/core5/httpcore5/5.0.2/httpcore5-5.0.2.jar:/Users/anhphan/.m2/repository/org/brotli/dec/0.1.2/dec-0.1.2.jar:/Users/anhphan/.m2/repository/com/jhlabs/filters/2.0.235/filters-2.0.235.jar:/Users/anhphan/.m2/repository/com/paulhammant/ngwebdriver/1.1.6/ngwebdriver-1.1.6.jar:/Users/anhphan/.m2/repository/joda-time/joda-time/2.8.2/joda-time-2.8.2.jar:/Users/anhphan/.m2/repository/org/hamcrest/hamcrest/2.2/hamcrest-2.2.jar:/Users/anhphan/.m2/repository/com/google/jimfs/jimfs/1.2/jimfs-1.2.jar:/Users/anhphan/.m2/repository/org/mockito/mockito-core/3.3.3/mockito-core-3.3.3.jar:/Users/anhphan/.m2/repository/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar:/Users/anhphan/.m2/repository/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar:/Users/anhphan/.m2/repository/com/sun/xml/bind/jaxb-core/2.3.0.1/jaxb-core-2.3.0.1.jar:/Users/anhphan/.m2/repository/com/sun/xml/bind/jaxb-impl/2.3.3/jaxb-impl-2.3.3.jar:/Users/anhphan/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar:/Users/anhphan/.m2/repository/com/sun/activation/jakarta.activation/1.2.2/jakarta.activation-1.2.2.jar:/Users/anhphan/.m2/repository/javax/activation/activation/1.1.1/activation-1.1.1.jar:/Users/anhphan/.m2/repository/net/serenity-bdd/serenity-junit5/3.2.1/serenity-junit5-3.2.1.jar:/Users/anhphan/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.8.2/junit-jupiter-params-5.8.2.jar:/Users/anhphan/.m2/repository/org/junit/vintage/junit-vintage-engine/5.8.2/junit-vintage-engine-5.8.2.jar:/Users/anhphan/.m2/repository/junit/junit/4.13.2/junit-4.13.2.jar:/Users/anhphan/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/anhphan/.m2/repository/org/junit/platform/junit-platform-launcher/1.8.1/junit-platform-launcher-1.8.1.jar:/Users/anhphan/.m2/repository/org/springframework/spring-core/5.3.3/spring-core-5.3.3.jar:/Users/anhphan/.m2/repository/org/springframework/spring-jcl/5.3.3/spring-jcl-5.3.3.jar:/Users/anhphan/.m2/repository/net/serenity-bdd/serenity-screenplay/3.2.1/serenity-screenplay-3.2.1.jar:/Users/anhphan/.m2/repository/net/serenity-bdd/serenity-ensure/3.2.1/serenity-ensure-3.2.1.jar:/Users/anhphan/.m2/repository/net/serenity-bdd/serenity-junit/3.2.1/serenity-junit-3.2.1.jar:/Users/anhphan/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.6.0/kotlin-stdlib-1.6.0.jar:/Users/anhphan/.m2/repository/org/jetbrains/annotations/13.0/annotations-13.0.jar:/Users/anhphan/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.6.0/kotlin-stdlib-common-1.6.0.jar:/Users/anhphan/.m2/repository/net/serenity-bdd/serenity-screenplay-webdriver/3.2.1/serenity-screenplay-webdriver-3.2.1.jar:/Users/anhphan/.m2/repository/ch/qos/logback/logback-classic/1.2.10/logback-classic-1.2.10.jar:/Users/anhphan/.m2/repository/ch/qos/logback/logback-core/1.2.10/logback-core-1.2.10.jar:/Users/anhphan/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.8.2/junit-jupiter-api-5.8.2.jar:/Users/anhphan/.m2/repository/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar:/Users/anhphan/.m2/repository/org/junit/platform/junit-platform-commons/1.8.2/junit-platform-commons-1.8.2.jar:/Users/anhphan/.m2/repository/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar:/Users/anhphan/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.8.2/junit-jupiter-engine-5.8.2.jar:/Users/anhphan/.m2/repository/org/junit/platform/junit-platform-engine/1.8.2/junit-platform-engine-1.8.2.jar:/Users/anhphan/.m2/repository/org/assertj/assertj-core/3.22.0/assertj-core-3.22.0.jar:/Users/anhphan/.m2/repository/io/rest-assured/rest-assured/4.5.1/rest-assured-4.5.1.jar:/Users/anhphan/.m2/repository/org/codehaus/groovy/groovy-xml/3.0.9/groovy-xml-3.0.9.jar:/Users/anhphan/.m2/repository/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar:/Users/anhphan/.m2/repository/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar:/Users/anhphan/.m2/repository/org/ccil/cowan/tagsoup/tagsoup/1.2.1/tagsoup-1.2.1.jar:/Users/anhphan/.m2/repository/io/rest-assured/json-path/4.5.1/json-path-4.5.1.jar:/Users/anhphan/.m2/repository/org/codehaus/groovy/groovy-json/3.0.9/groovy-json-3.0.9.jar:/Users/anhphan/.m2/repository/io/rest-assured/rest-assured-common/4.5.1/rest-assured-common-4.5.1.jar:/Users/anhphan/.m2/repository/io/rest-assured/xml-path/4.5.1/xml-path-4.5.1.jar:/Users/anhphan/.m2/repository/com/jayway/jsonpath/json-path/2.7.0/json-path-2.7.0.jar:/Users/anhphan/.m2/repository/net/minidev/json-smart/2.4.7/json-smart-2.4.7.jar:/Users/anhphan/.m2/repository/net/minidev/accessors-smart/2.4.7/accessors-smart-2.4.7.jar:/Users/anhphan/.m2/repository/com/google/api-client/google-api-client/1.33.2/google-api-client-1.33.2.jar:/Users/anhphan/.m2/repository/com/google/oauth-client/google-oauth-client/1.33.0/google-oauth-client-1.33.0.jar:/Users/anhphan/.m2/repository/com/google/http-client/google-http-client-gson/1.41.2/google-http-client-gson-1.41.2.jar:/Users/anhphan/.m2/repository/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar:/Users/anhphan/.m2/repository/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:/Users/anhphan/.m2/repository/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/Users/anhphan/.m2/repository/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar:/Users/anhphan/.m2/repository/com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar:/Users/anhphan/.m2/repository/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar:/Users/anhphan/.m2/repository/com/google/http-client/google-http-client-apache-v2/1.41.2/google-http-client-apache-v2-1.41.2.jar:/Users/anhphan/.m2/repository/org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar:/Users/anhphan/.m2/repository/com/google/http-client/google-http-client/1.41.2/google-http-client-1.41.2.jar:/Users/anhphan/.m2/repository/io/opencensus/opencensus-api/0.30.0/opencensus-api-0.30.0.jar:/Users/anhphan/.m2/repository/io/grpc/grpc-context/1.27.2/grpc-context-1.27.2.jar:/Users/anhphan/.m2/repository/io/opencensus/opencensus-contrib-http-util/0.30.0/opencensus-contrib-http-util-0.30.0.jar:/Users/anhphan/.m2/repository/com/google/gdata/core/1.47.1/core-1.47.1.jar:/Users/anhphan/.m2/repository/com/google/oauth-client/google-oauth-client-jetty/1.11.0-beta/google-oauth-client-jetty-1.11.0-beta.jar:/Users/anhphan/.m2/repository/com/google/oauth-client/google-oauth-client-java6/1.11.0-beta/google-oauth-client-java6-1.11.0-beta.jar:/Users/anhphan/.m2/repository/org/mortbay/jetty/jetty/6.1.26/jetty-6.1.26.jar:/Users/anhphan/.m2/repository/org/mortbay/jetty/jetty-util/6.1.26/jetty-util-6.1.26.jar:/Users/anhphan/.m2/repository/org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar:/Users/anhphan/.m2/repository/com/google/code/findbugs/jsr305/1.3.7/jsr305-1.3.7.jar:/Users/anhphan/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/anhphan/.m2/repository/com/google/apis/google-api-services-sheets/v4-rev20220221-1.32.1/google-api-services-sheets-v4-rev20220221-1.32.1.jar:/Users/anhphan/.m2/repository/com/google/apis/google-api-services-drive/v3-rev20220214-1.32.1/google-api-services-drive-v3-rev20220214-1.32.1.jar:/Users/anhphan/.m2/repository/com/konghq/unirest-java/3.13.7/unirest-java-3.13.7.jar:/Users/anhphan/.m2/repository/org/apache/httpcomponents/httpcore-nio/4.4.13/httpcore-nio-4.4.13.jar:/Users/anhphan/.m2/repository/org/apache/httpcomponents/httpasyncclient/4.1.5/httpasyncclient-4.1.5.jar:/Users/anhphan/.m2/repository/com/sikulix/sikulixapi/2.0.5/sikulixapi-2.0.5.jar:/Users/anhphan/.m2/repository/org/python/jython-slim/2.7.2/jython-slim-2.7.2.jar:/Users/anhphan/.m2/repository/org/antlr/antlr/3.5.2/antlr-3.5.2.jar:/Users/anhphan/.m2/repository/org/antlr/ST4/4.0.8/ST4-4.0.8.jar:/Users/anhphan/.m2/repository/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar:/Users/anhphan/.m2/repository/org/antlr/antlr-runtime/3.5.2/antlr-runtime-3.5.2.jar:/Users/anhphan/.m2/repository/org/apache/commons/commons-compress/1.19/commons-compress-1.19.jar:/Users/anhphan/.m2/repository/org/bouncycastle/bcpkix-jdk15on/1.62/bcpkix-jdk15on-1.62.jar:/Users/anhphan/.m2/repository/org/bouncycastle/bcprov-jdk15on/1.62/bcprov-jdk15on-1.62.jar:/Users/anhphan/.m2/repository/org/ow2/asm/asm-commons/7.1/asm-commons-7.1.jar:/Users/anhphan/.m2/repository/org/ow2/asm/asm-tree/7.1/asm-tree-7.1.jar:/Users/anhphan/.m2/repository/org/ow2/asm/asm-analysis/7.1/asm-analysis-7.1.jar:/Users/anhphan/.m2/repository/org/ow2/asm/asm-util/7.1/asm-util-7.1.jar:/Users/anhphan/.m2/repository/com/ibm/icu/icu4j/59.1/icu4j-59.1.jar:/Users/anhphan/.m2/repository/com/carrotsearch/java-sizeof/0.0.5/java-sizeof-0.0.5.jar:/Users/anhphan/.m2/repository/com/github/jnr/jffi/1.2.20/jffi-1.2.20.jar:/Users/anhphan/.m2/repository/com/github/jnr/jnr-netdb/1.1.6/jnr-netdb-1.1.6.jar:/Users/anhphan/.m2/repository/com/github/jnr/jnr-ffi/2.1.10/jnr-ffi-2.1.10.jar:/Users/anhphan/.m2/repository/com/github/jnr/jffi/1.2.19/jffi-1.2.19-native.jar:/Users/anhphan/.m2/repository/com/github/jnr/jnr-a64asm/1.0.0/jnr-a64asm-1.0.0.jar:/Users/anhphan/.m2/repository/com/github/jnr/jnr-x86asm/1.0.2/jnr-x86asm-1.0.2.jar:/Users/anhphan/.m2/repository/com/github/jnr/jnr-posix/3.0.50/jnr-posix-3.0.50.jar:/Users/anhphan/.m2/repository/com/github/jnr/jnr-constants/0.9.12/jnr-constants-0.9.12.jar:/Users/anhphan/.m2/repository/jline/jline/2.14.5/jline-2.14.5.jar:/Users/anhphan/.m2/repository/io/netty/netty-codec/4.1.45.Final/netty-codec-4.1.45.Final.jar:/Users/anhphan/.m2/repository/io/netty/netty-handler/4.1.45.Final/netty-handler-4.1.45.Final.jar:/Users/anhphan/.m2/repository/io/netty/netty-resolver/4.1.45.Final/netty-resolver-4.1.45.Final.jar:/Users/anhphan/.m2/repository/org/apache/ant/ant/1.9.7/ant-1.9.7.jar:/Users/anhphan/.m2/repository/org/apache/ant/ant-launcher/1.9.7/ant-launcher-1.9.7.jar:/Users/anhphan/.m2/repository/com/sikulix/sikulix2tigervnc/1.1.4/sikulix2tigervnc-1.1.4.jar:/Users/anhphan/.m2/repository/org/openpnp/opencv/4.3.0-3/opencv-4.3.0-3.jar:/Users/anhphan/.m2/repository/commons-cli/commons-cli/1.4/commons-cli-1.4.jar:/Users/anhphan/.m2/repository/org/apache/commons/commons-exec/1.3/commons-exec-1.3.jar:/Users/anhphan/.m2/repository/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar:/Users/anhphan/.m2/repository/net/oneandone/reflections8/reflections8/0.11.6/reflections8-0.11.6.jar:/Users/anhphan/.m2/repository/org/javassist/javassist/3.22.0-GA/javassist-3.22.0-GA.jar:/Users/anhphan/.m2/repository/org/slf4j/slf4j-nop/1.7.28/slf4j-nop-1.7.28.jar:/Users/anhphan/.m2/repository/net/sf/py4j/py4j/0.10.9.1/py4j-0.10.9.1.jar:/Users/anhphan/.m2/repository/net/sourceforge/tess4j/tess4j/5.1.1/tess4j-5.1.1.jar:/Users/anhphan/.m2/repository/net/java/dev/jna/jna/5.10.0/jna-5.10.0.jar:/Users/anhphan/.m2/repository/com/github/jai-imageio/jai-imageio-core/1.4.0/jai-imageio-core-1.4.0.jar:/Users/anhphan/.m2/repository/org/apache/pdfbox/pdfbox/2.0.25/pdfbox-2.0.25.jar:/Users/anhphan/.m2/repository/org/apache/pdfbox/fontbox/2.0.25/fontbox-2.0.25.jar:/Users/anhphan/.m2/repository/org/apache/pdfbox/pdfbox-tools/2.0.25/pdfbox-tools-2.0.25.jar:/Users/anhphan/.m2/repository/org/apache/pdfbox/pdfbox-debugger/2.0.25/pdfbox-debugger-2.0.25.jar:/Users/anhphan/.m2/repository/org/apache/pdfbox/jbig2-imageio/3.0.3/jbig2-imageio-3.0.3.jar:/Users/anhphan/.m2/repository/net/sourceforge/lept4j/lept4j/1.16.1/lept4j-1.16.1.jar:/Users/anhphan/.m2/repository/org/jboss/jboss-vfs/3.2.16.Final/jboss-vfs-3.2.16.Final.jar:/Users/anhphan/.m2/repository/org/jboss/logging/jboss-logging/3.1.4.GA/jboss-logging-3.1.4.GA.jar com.intellij.rt.junit.JUnitStarter -ideVersion5 -junit5 xxx.automation.tests.denwaShoudan.NewVerTests,test
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/Users/anhphan/.m2/repository/ch/qos/logback/logback-classic/1.2.10/logback-classic-1.2.10.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/Users/anhphan/.m2/repository/org/slf4j/slf4j-nop/1.7.28/slf4j-nop-1.7.28.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [ch.qos.logback.classic.util.ContextSelectorStaticBinder]
17:18:45.788 [main] DEBUG net.thucydides.core.steps.StepEventBus - Test suite started for class xxx.automation.tests.denwaShoudan.NewVerTests
17:18:45.790 [main] DEBUG net.serenitybdd.junit5.SerenityTestExecutionListener - Thread[main,5,main] Test started TestIdentifier [uniqueId = [engine:junit-jupiter]/[class:xxx.automation.tests.denwaShoudan.NewVerTests]/[method:test()], parentId = [engine:junit-jupiter]/[class:xxx.automation.tests.denwaShoudan.NewVerTests], displayName = 'test()', legacyReportingName = 'test()', source = MethodSource [className = 'xxx.automation.tests.denwaShoudan.NewVerTests', methodName = 'test', methodParameterTypes = ''], tags = [], type = TEST]
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by net.thucydides.core.steps.StepInterceptor (file:/Users/anhphan/.m2/repository/net/serenity-bdd/serenity-core/3.2.1/serenity-core-3.2.1.jar) to field java.lang.reflect.Method.root
WARNING: Please consider reporting this to the maintainers of net.thucydides.core.steps.StepInterceptor
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
17:18:46.514 [main] DEBUG net.thucydides.core.steps.StepInterceptor - STARTING STEP: NewVerTests.test - {0} opens the browser at #url
17:18:46.537 [main] INFO net.serenitybdd.core.webdriver.driverproviders.ChromeDriverProvider - Using automatically driver download
17:18:46.694 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WebElementFacadeImpl
17:18:46.695 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WebElementResolverByElementLocator
17:18:46.696 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WidgetObjectImpl
17:18:46.697 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WrappedWebElementFacadeImpl
17:18:47.310 [main] DEBUG io.github.bonigarcia.wdm.cache.ResolutionCache - Resolution chrome=99 in cache (valid until 17:59:29 01/04/2022 JST)
17:18:47.315 [main] DEBUG io.github.bonigarcia.wdm.cache.ResolutionCache - Resolution chrome99=99.0.4844.51 in cache (valid until 14:18:08 02/04/2022 JST)
17:18:47.317 [main] INFO io.github.bonigarcia.wdm.WebDriverManager - Using chromedriver 99.0.4844.51 (resolved driver for Chrome 99)
17:18:47.353 [main] DEBUG io.github.bonigarcia.wdm.WebDriverManager - Driver chromedriver 99.0.4844.51 found in cache
17:18:47.354 [main] INFO io.github.bonigarcia.wdm.WebDriverManager - Exporting webdriver.chrome.driver as /Users/anhphan/.cache/selenium/chromedriver/mac64/99.0.4844.51/chromedriver
17:18:47.470 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WebElementFacadeImpl
17:18:47.470 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WebElementResolverByElementLocator
17:18:47.471 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WidgetObjectImpl
17:18:47.471 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WrappedWebElementFacadeImpl
17:18:48.157 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.AllowPopup
17:18:48.157 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.AppFocus
17:18:48.157 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.BrowseClientPage
17:18:48.157 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.BrowserStaffPage
17:18:48.157 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.CheckElementExists
17:18:48.158 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.CheckTextExists
17:18:48.158 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.CheckWindowExist
17:18:48.158 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.ClickAtPosition
17:18:48.158 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.ClickByImage
17:18:48.158 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.ClickOnSide
17:18:48.158 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.ClosePopup
17:18:48.158 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.CloseTab
17:18:48.158 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.GetTextByImage
17:18:48.158 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.IClick
17:18:48.158 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.IDragDrop
17:18:48.158 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.IWait
17:18:48.158 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.Logs
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.Refresh
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.ReleaseNumberMeeting
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.ScrollScreen
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.ScrollTo
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.ShadowDOM
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.SwitchTo
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.wait.FluentWaitElementInvisible
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.wait.FluentWaitElementPresent
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.wait.FluentWaitElementVisible
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.wait.FluentWaitMessageInvisible
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.wait.UntilAllCompleted
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.wait.WaitABit
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.wait.WaitControlCompleted
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.actions.wait.WaitDownloadCompleted
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.models.ElementAvailability
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.models.FileInLocal
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.models.PathFileDownloaded
17:18:48.159 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.models.SizeObject
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.models.SizePopup
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.BrowserWindow
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.Camera
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.CameraPopup
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.ElementSize
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.LatestLog
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.LocationElementQuestion
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.Popup
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.SaveMeeting
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.Survey
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.VideoCall
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.VideoCallConnected
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.WorkOutsidePopup
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.denwaShoudanQuestions.ClickableOfElement
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.denwaShoudanQuestions.DenwaShoudanPageQuestions
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.filetransfer.FileTransfer
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.filetransfer.LocalFile
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.filetransfer.SlideMessage
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.filetransfer.UploadCompleted
17:18:48.160 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.profilecard.ProfileCardForm
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.remoteControl.BrowserVersion
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.remoteControl.CheckClickable
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.remoteControl.DisplayContent
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.remoteControl.ExtractMessageJP
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.remoteControl.ExtractText
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.remoteControl.MeetingLogQuestions
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.remoteControl.OrcTextRead
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.remoteControl.RemoteControlDialog
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.remoteControl.RemoteControlQuestions
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.remoteControl.TransferredRemoteControl
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.shareMemo.Memo
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.shareMemo.MemoSize
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.shareScreen.ShareScreenQuestions
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.sharefile.DocumentElementVisible
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.sharefile.DocumentQuestions
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.sharefile.SizeOfDocument
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.sharefile.TalkScriptContent
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.sharefile.TalkScriptQuestions
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.webShoudanQuestions.FileTransferQuestions
17:18:48.161 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.webShoudanQuestions.PreConnectionQuestions
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.questions.webShoudanQuestions.ProfileCardQuestions
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.SendNotifyReportTests
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.SerenityReportTests
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.SummaryReportTests
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.GoogleCredential
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.notifyData.ContentReport
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.notifyData.EnvironmentDataParse
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.notifyData.JenkinsReportURLParse
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.notifyData.RemoveItemHashMap
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.notifyData.ReportParse
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.notifyData.ReportResultParse
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.notifyData.SelectData
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.notifyData.SendNotify
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.serenityReport.CheckFolderCreated
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.serenityReport.CreateFolder
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.serenityReport.DataGetFromJenkins
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.serenityReport.DeleteFile
17:18:48.162 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.serenityReport.FindFile
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.serenityReport.FindFolder
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.serenityReport.GetFileLocal
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.serenityReport.GetFolderList
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.serenityReport.UploadFile
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.summaryReport.CheckSheetCreated
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.summaryReport.CreateSheet
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.summaryReport.DataWriteReport
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.summaryReport.DeleteSheet
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.summaryReport.GetSheetList
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.summaryReport.GuestDevice
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.reports.func.summaryReport.WriteResult
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.ChangeCameraMode
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.ChangeMemoMode
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.ChangeMemoSize
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.DeleteFile
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.ElementPosition
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.HeadspinTasks
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.MoveElement
17:18:48.163 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.MovePopupMode
17:18:48.164 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.NetworkCondition
17:18:48.164 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.PostANote
17:18:48.164 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.SelectFileShare
17:18:48.164 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.SelectMenu
17:18:48.164 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.SelectMenuWebMT
17:18:48.164 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.SettingCamera
17:18:48.164 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.SettingConnectWebMT
17:18:48.164 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.WaitDocument
17:18:48.164 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.WaitForSlideMessage
17:18:48.164 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.client.AcceptDownload
17:18:48.164 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.client.AllowPermission
17:18:48.164 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.client.CancelDownload
17:18:48.164 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.client.CloseSurvey
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.client.GuestJoinWebMT
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.client.PressDownload
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.client.RemoteControlFunc
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.client.RequestProfileCard
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.client.RotateScreen
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.client.SelectDayDatePicker
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.client.StartMeeting
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.client.TakeSurvey
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.client.WaitDocument
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.client.WaitElementDisplay
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.DownloadMeetingLog
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.JoinMeeting
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.Login
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.NavigateTo
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.OpenNewTab
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.RecordLog
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.SaveMeetingLog
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.SelectMemoTemplate
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.SetDefaultMemo
17:18:48.165 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.Settings
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.SettingsWhiteList
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.StopMeeting
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.SuggestDownloadMemo
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.VirtualBackground
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.xxxAdmin.OpenPageAdmin
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.xxxAdmin.SearchClient
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.xxxAdmin.SettingClient
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.filetransfer.TransferFile
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.profilecard.ProfileCard
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.profilecard.SetDownloadVCard
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.profilecard.SetNoDefaultMemo
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.profilecard.SetProfileCard
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.profilecard.ShareProfileCard
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.remoteControl.DeleteExtension
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.remoteControl.FillInAllContent
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.remoteControl.InputTextOnShareScreen
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.remoteControl.OpenBrowserExtensionPage
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.remoteControl.SelectOptionOnShareScreen
17:18:48.166 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.remoteControl.SelectScreenSharingSide
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.remoteControl.StopRemoteControl
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.remoteControl.TransferOperation
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.remoteControl.TransferOperationForGuest
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.remoteControl.TurnOffExtension
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.shareScreen.SharingScreen
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.sharefile.CheckBehaviorOfTalkScript
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.sharefile.Document
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.sharefile.DocumentTypes
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.sharefile.FileMenu
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.sharefile.SelectDocument
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.sharefile.TalkScript
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.webShoudan.AllowJoinMeeting
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.webShoudan.HostJoinWebMT
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tasks.staff.webShoudan.MeetingStart
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.Common
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.TestBase
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.denwaShoudan.CameraSettingTests
17:18:48.167 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.denwaShoudan.FileReceptionTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.denwaShoudan.FileTransferTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.denwaShoudan.LiveDistributionTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.denwaShoudan.MeetingTerminationTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.denwaShoudan.NewVerTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.denwaShoudan.PerformanceTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.denwaShoudan.SettingChangeTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.denwaShoudan.SharedFileTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.denwaShoudan.SharedMemoTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.denwaShoudan.WhenSearchingForTerms
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.package-info
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.remoteControl.ChromeBetaTest
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.remoteControl.EndScreenSharingTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.remoteControl.ExistingFunctionsTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.remoteControl.ExtensionTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.remoteControl.ForceStopRemoteControlTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.remoteControl.GoogleFormTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.remoteControl.GuestOperationTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.remoteControl.HostOperationTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.remoteControl.OperationLogTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.remoteControl.RecordLogTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.remoteControl.RemoteControlTests
17:18:48.168 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.tests.remoteControl.RemoteMsFormTests
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.AndroidElements
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.xxxAdminPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.BusinessCardSettingPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.CameraSettingPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.ClientStartPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.ConnectionPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.ExtensionsPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.FAQPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.IOSElements
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.LoginPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.MeetingRecordsPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.MenuPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.OrganizationalManagementPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.PreConnectionPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.RecordLogPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.RemoteControlPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.SaveMeetingPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.SharedMemoSettingPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.SurveyPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.VideoCallPage
17:18:48.169 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.WebShoudanMeetingPage
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.WebShoudanMeetingStartPage
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.imageElement.ImageElement
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.remoteControlPage.RemoteControlMsFormElements
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.ui.remoteControlPage.RemoteControlPageElements
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.AppiumServerController
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.BringTheWindow
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.BrowserHost
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.CalculatingSimilarity
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.CaptureImage
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.Clipboard
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.CloseConnection
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.Constants
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.CustomChromeDriver
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.CustomEdgeDriver
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.CustomFirefoxDriver
17:18:48.170 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.CustomHeadspinAndroidChromeDriver
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.CustomHeadspinChromeDriver
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.CustomHeadspinChromeUSDriver
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.CustomHeadspinFirefoxDriver
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.CustomHeadspinIOSSafariDriver
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.CustomIOSSafariDriver
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.CustomSafariDriver
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.DateTimeHandling
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.FileUtils
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.HeadspinProgress
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.JsonDataReader
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.LoadConfig
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.MessageConstants
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.MobileController
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.OSAllowsDriver
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.Performance.APIUtils
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.Performance.CalculateTimeAsync
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.Performance.PerformanceAPI
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.Performance.PerformanceCalculation
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.Performance.PerformanceConstants
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.Performance.PerformanceController
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.Performance.Session
17:18:48.171 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.ScanImage
17:18:48.172 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.ScreenTitle
17:18:48.172 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.SikuliXCaptureImage
17:18:48.172 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.customHostBrowser.CustomHostChromeDriver
17:18:48.172 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class .xxx.automation.utils.customHostBrowser.CustomHostEdgeDriver
17:18:48.173 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class META-INF.versions.9.com.sun.istack.logging.StackHelper
17:18:48.174 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class META-INF.versions.9.com.sun.xml.bind.v2.runtime.reflect.opt.AccessorInjector
17:18:48.175 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class META-INF.versions.9.com.sun.xml.bind.v2.runtime.reflect.opt.Injector
17:18:48.175 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class META-INF.versions.9.com.sun.xml.bind.v2.runtime.reflect.opt.OptimizedAccessorFactory
17:18:48.176 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class META-INF.versions.9.com.sun.xml.bind.v2.runtime.reflect.opt.OptimizedTransducedAccessorFactory
17:18:48.176 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class META-INF.versions.9.io.opentelemetry.sdk.internal.CurrentJavaVersionSpecific
17:18:48.176 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class META-INF.versions.9.io.opentelemetry.sdk.internal.Java9VersionSpecific
17:18:48.177 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class META-INF.versions.9.javax.xml.bind.ModuleUtil
17:18:48.177 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class META-INF.versions.9.module-info
17:18:48.178 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class META-INF.versions.9.org.junit.platform.commons.util.ModuleUtils
17:18:48.599 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class com.google.gson.internal.
17:18:48.747 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class com.sun.xml.bind.v2.runtime.output.FastInfosetStreamWriterOutput
17:18:49.108 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class module-info
17:18:52.674 [main] DEBUG io.netty.util.internal.logging.InternalLoggerFactory - Using SLF4J as the default logging framework
17:18:52.677 [main] DEBUG io.netty.util.ResourceLeakDetector - -Dio.netty.leakDetection.level: simple
17:18:52.677 [main] DEBUG io.netty.util.ResourceLeakDetector - -Dio.netty.leakDetection.targetRecords: 4
17:18:52.681 [main] DEBUG io.netty.util.ResourceLeakDetectorFactory - Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@596d15c
17:18:52.698 [main] DEBUG io.netty.util.internal.PlatformDependent0 - -Dio.netty.noUnsafe: false
17:18:52.698 [main] DEBUG io.netty.util.internal.PlatformDependent0 - Java version: 11
17:18:52.699 [main] DEBUG io.netty.util.internal.PlatformDependent0 - sun.misc.Unsafe.theUnsafe: available
17:18:52.699 [main] DEBUG io.netty.util.internal.PlatformDependent0 - sun.misc.Unsafe.copyMemory: available
17:18:52.699 [main] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.Buffer.address: available
17:18:52.700 [main] DEBUG io.netty.util.internal.PlatformDependent0 - direct buffer constructor: unavailable: Reflective setAccessible(true) disabled
17:18:52.700 [main] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.Bits.unaligned: available, true
17:18:52.701 [main] 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 @78c1372d
17:18:52.702 [main] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.DirectByteBuffer.<init>(long, int): unavailable
17:18:52.702 [main] DEBUG io.netty.util.internal.PlatformDependent - sun.misc.Unsafe: available
17:18:52.704 [main] DEBUG io.netty.util.internal.PlatformDependent - maxDirectMemory: 4294967296 bytes (maybe)
17:18:52.704 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.tmpdir: /var/folders/7h/5ffctq6n3j729_9n66rmqtz40000gp/T (java.io.tmpdir)
17:18:52.704 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.bitMode: 64 (sun.arch.data.model)
17:18:52.705 [main] DEBUG io.netty.util.internal.PlatformDependent - Platform: MacOS
17:18:52.706 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.maxDirectMemory: -1 bytes
17:18:52.706 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.uninitializedArrayAllocationThreshold: -1
17:18:52.706 [main] DEBUG io.netty.util.internal.CleanerJava9 - java.nio.ByteBuffer.cleaner(): available
17:18:52.706 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.noPreferDirect: false
17:18:52.713 [main] DEBUG io.netty.util.internal.PlatformDependent - org.jctools-core.MpscChunkedArrayQueue: available
17:18:52.738 [main] DEBUG io.netty.util.internal.InternalThreadLocalMap - -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024
17:18:52.738 [main] DEBUG io.netty.util.internal.InternalThreadLocalMap - -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096
17:18:52.763 [main] DEBUG io.netty.handler.ssl.JdkSslContext - Default protocols (JDK): [TLSv1.2] 
17:18:52.764 [main] 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]
17:18:52.793 [main] DEBUG io.netty.channel.MultithreadEventLoopGroup - -Dio.netty.eventLoopThreads: 24
17:18:52.802 [main] DEBUG io.netty.channel.nio.NioEventLoop - -Dio.netty.noKeySetOptimization: false
17:18:52.802 [main] DEBUG io.netty.channel.nio.NioEventLoop - -Dio.netty.selectorAutoRebuildThreshold: 512
17:18:52.833 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.numHeapArenas: 24
17:18:52.833 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.numDirectArenas: 24
17:18:52.833 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.pageSize: 8192
17:18:52.833 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.maxOrder: 9
17:18:52.833 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.chunkSize: 4194304
17:18:52.833 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.smallCacheSize: 256
17:18:52.833 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.normalCacheSize: 64
17:18:52.833 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.maxCachedBufferCapacity: 32768
17:18:52.833 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.cacheTrimInterval: 8192
17:18:52.833 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.cacheTrimIntervalMillis: 0
17:18:52.833 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.useCacheForAllThreads: false
17:18:52.833 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023
17:18:52.845 [main] DEBUG io.netty.buffer.ByteBufUtil - -Dio.netty.allocator.type: pooled
17:18:52.845 [main] DEBUG io.netty.buffer.ByteBufUtil - -Dio.netty.threadLocalDirectBufferSize: 0
17:18:52.845 [main] DEBUG io.netty.buffer.ByteBufUtil - -Dio.netty.maxThreadLocalCharBufferSize: 16384
17:18:53.058 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WebElementFacadeImpl
17:18:53.059 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WebElementResolverByElementLocator
17:18:53.060 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WidgetObjectImpl
17:18:53.061 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WrappedWebElementFacadeImpl
17:18:53.067 [main] DEBUG net.serenitybdd.core.webdriver.driverproviders.ProvideNewDriver - Instantiating driver
17:18:53.067 [main] DEBUG net.serenitybdd.core.webdriver.driverproviders.ProvideNewDriver - Driver capabilities: Capabilities {acceptInsecureCerts: false, autodownload: true, base.url: , browserName: chrome, goog:chromeOptions: {args: [], extensions: []}, provided.mydriver: xxx.automation.utils.C..., provided.type: mydriver}
Starting ChromeDriver 99.0.4844.51 (d537ec02474b5afe23684e7963d538896c63ac77-refs/branch-heads/4844@{#875}) on port 53695
Only local connections are allowed.
Please see https://chromedriver.chromium.org/security-considerations for suggestions on keeping ChromeDriver safe.
ChromeDriver was started successfully.
17:18:53.466 [Forwarding newSession on session null to remote] DEBUG io.netty.channel.DefaultChannelId - -Dio.netty.processId: 11534 (auto-detected)
17:18:53.468 [Forwarding newSession on session null to remote] DEBUG io.netty.util.NetUtil - -Djava.net.preferIPv4Stack: false
17:18:53.468 [Forwarding newSession on session null to remote] DEBUG io.netty.util.NetUtil - -Djava.net.preferIPv6Addresses: false
17:18:53.470 [Forwarding newSession on session null to remote] DEBUG io.netty.util.NetUtilInitializations - Loopback interface: lo0 (lo0, 0:0:0:0:0:0:0:1%lo0)
17:18:53.470 [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: 128
17:18:53.472 [Forwarding newSession on session null to remote] DEBUG io.netty.channel.DefaultChannelId - -Dio.netty.machineId: ac:de:48:ff:fe:00:11:22 (auto-detected)
17:18:53.523 [AsyncHttpClient-1-2] DEBUG io.netty.buffer.AbstractByteBuf - -Dio.netty.buffer.checkAccessible: true
17:18:53.524 [AsyncHttpClient-1-2] DEBUG io.netty.buffer.AbstractByteBuf - -Dio.netty.buffer.checkBounds: true
17:18:53.524 [AsyncHttpClient-1-2] DEBUG io.netty.util.ResourceLeakDetectorFactory - Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@86a34ed
17:18:53.540 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.NettyConnectListener - Using new Channel '[id: 0x329952bb, L:/127.0.0.1:52834 - R:localhost/127.0.0.1:53695]' for 'POST' to '/session'
17:18:53.557 [AsyncHttpClient-1-2] DEBUG io.netty.util.Recycler - -Dio.netty.recycler.maxCapacityPerThread: 4096
17:18:53.557 [AsyncHttpClient-1-2] DEBUG io.netty.util.Recycler - -Dio.netty.recycler.ratio: 8
17:18:53.557 [AsyncHttpClient-1-2] DEBUG io.netty.util.Recycler - -Dio.netty.recycler.chunkSize: 32
17:18:53.557 [AsyncHttpClient-1-2] DEBUG io.netty.util.Recycler - -Dio.netty.recycler.blocking: false
17:18:55.303 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - Unexpected I/O exception on channel [id: 0x329952bb, L:/127.0.0.1:52834 - R:localhost/127.0.0.1:53695]
java.lang.ClassNotFoundException: io.netty.handler.codec.compression.Brotli
	at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:581)
	at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
	at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522)
	at io.netty.handler.codec.http.HttpContentDecompressor.newContentDecoder(HttpContentDecompressor.java:70)
	at io.netty.handler.codec.http.HttpContentDecoder.decode(HttpContentDecoder.java:100)
	at io.netty.handler.codec.http.HttpContentDecoder.decode(HttpContentDecoder.java:47)
	at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:88)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365)
	at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357)
	at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:436)
	at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:321)
	at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:308)
	at io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:422)
	at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:276)
	at io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365)
	at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357)
	at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365)
	at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919)
	at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166)
	at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
	at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
	at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
	at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
	at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:986)
	at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
	at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
	at java.base/java.lang.Thread.run(Thread.java:829)
17:18:55.305 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - Was unable to recover Future: NettyResponseFuture{currentRetry=0,
	isDone=0,
	isCancelled=0,
	asyncHandler=org.asynchttpclient.AsyncCompletionHandlerBase@735efa7,
	nettyRequest=org.asynchttpclient.netty.request.NettyRequest@761e0490,
	future=java.util.concurrent.CompletableFuture@76a7d95c[Not completed, 1 dependents],
	uri=http://localhost:53695/session,
	keepAlive=true,
	redirectCount=0,
	timeoutsHolder=org.asynchttpclient.netty.timeout.TimeoutsHolder@60ea2a46,
	inAuth=0,
	touch=1648801135305}
17:18:55.305 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Closing Channel [id: 0x329952bb, L:/127.0.0.1:52834 - R:localhost/127.0.0.1:53695] 
17:18:55.307 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - Aborting Future NettyResponseFuture{currentRetry=0,
	isDone=0,
	isCancelled=0,
	asyncHandler=org.asynchttpclient.AsyncCompletionHandlerBase@735efa7,
	nettyRequest=org.asynchttpclient.netty.request.NettyRequest@761e0490,
	future=java.util.concurrent.CompletableFuture@76a7d95c[Not completed, 1 dependents],
	uri=http://localhost:53695/session,
	keepAlive=true,
	redirectCount=0,
	timeoutsHolder=org.asynchttpclient.netty.timeout.TimeoutsHolder@60ea2a46,
	inAuth=0,
	touch=1648801135305}

17:18:55.307 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.request.NettyRequestSender - io.netty.handler.codec.compression.Brotli
java.lang.ClassNotFoundException: io.netty.handler.codec.compression.Brotli
	at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:581)
	at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
	at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522)
	at io.netty.handler.codec.http.HttpContentDecompressor.newContentDecoder(HttpContentDecompressor.java:70)
	at io.netty.handler.codec.http.HttpContentDecoder.decode(HttpContentDecoder.java:100)
	at io.netty.handler.codec.http.HttpContentDecoder.decode(HttpContentDecoder.java:47)
	at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:88)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365)
	at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357)
	at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:436)
	at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:321)
	at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:308)
	at io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:422)
	at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:276)
	at io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365)
	at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357)
	at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365)
	at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919)
	at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166)
	at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
	at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
	at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
	at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
	at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:986)
	at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
	at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
	at java.base/java.lang.Thread.run(Thread.java:829)
17:18:55.307 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.AsyncCompletionHandler - io.netty.handler.codec.compression.Brotli
java.lang.ClassNotFoundException: io.netty.handler.codec.compression.Brotli
	at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:581)
	at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
	at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522)
	at io.netty.handler.codec.http.HttpContentDecompressor.newContentDecoder(HttpContentDecompressor.java:70)
	at io.netty.handler.codec.http.HttpContentDecoder.decode(HttpContentDecoder.java:100)
	at io.netty.handler.codec.http.HttpContentDecoder.decode(HttpContentDecoder.java:47)
	at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:88)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365)
	at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357)
	at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:436)
	at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:321)
	at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:308)
	at io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:422)
	at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:276)
	at io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365)
	at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357)
	at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365)
	at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919)
	at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166)
	at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
	at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
	at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
	at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
	at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:986)
	at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
	at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
	at java.base/java.lang.Thread.run(Thread.java:829)
17:18:55.307 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.channel.ChannelManager - Closing Channel [id: 0x329952bb, L:/127.0.0.1:52834 ! R:localhost/127.0.0.1:53695] 
17:18:55.315 [AsyncHttpClient-1-2] DEBUG org.asynchttpclient.netty.handler.HttpHandler - Channel Closed: [id: 0x329952bb, L:/127.0.0.1:52834 ! R:localhost/127.0.0.1:53695] with attribute DISCARD
17:18:55.468 [main] DEBUG net.thucydides.core.steps.StepInterceptor - STEP FAILED: {0} opens the browser at #url - Could not instantiate class org.openqa.selenium.chrome.ChromeDriver
17:18:55.495 [main] DEBUG net.thucydides.core.requirements.PackageRequirementsTagProvider - Loading requirements from package requirements at: xxx.automation.tests
17:18:55.796 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WebElementFacadeImpl
17:18:55.796 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WebElementResolverByElementLocator
17:18:55.797 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WidgetObjectImpl
17:18:55.797 [main] DEBUG net.thucydides.core.reflection.ClassFinder - Could not load class net.serenitybdd.core.pages.WrappedWebElementFacadeImpl

net.thucydides.core.webdriver.DriverConfigurationError: Could not instantiate new WebDriver instance of type class org.openqa.selenium.chrome.ChromeDriver (Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure.
Build info: version: '4.1.3', revision: '7b1ebf28ef'
System info: host: '6780-AnhPV-Laptop-Mac.local', ip: 'fe80:0:0:0:1c03:10fd:9808:d5b6%en0', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '11.3', java.version: '11.0.12'
Driver info: org.openqa.selenium.chrome.ChromeDriver
Command: [null, newSession {capabilities=[Capabilities {acceptInsecureCerts: false, browserName: chrome, goog:chromeOptions: {args: [], extensions: []}}], desiredCapabilities=Capabilities {acceptInsecureCerts: false, autodownload: true, base.url: , browserName: chrome, goog:chromeOptions: {args: [], extensions: []}, provided.mydriver: xxx.automation.utils.C..., provided.type: mydriver}}]). See below for more details.

	at net.thucydides.core.webdriver.WebDriverFactory.newWebdriverInstance(WebDriverFactory.java:146)
	at net.thucydides.core.webdriver.WebDriverFacade.newDriverInstance(WebDriverFacade.java:143)
	at net.thucydides.core.webdriver.WebDriverFacade.newProxyDriver(WebDriverFacade.java:134)
	at net.thucydides.core.webdriver.WebDriverFacade.getProxiedDriver(WebDriverFacade.java:104)
	at net.thucydides.core.webdriver.WebDriverFacade.get(WebDriverFacade.java:174)
	at net.serenitybdd.core.pages.PageObject.openPageAtUrl(PageObject.java:983)
	at net.serenitybdd.core.pages.PageObject.openUrl(PageObject.java:929)
	at net.serenitybdd.screenplay.actions.OpenUrl.performAs(OpenUrl.java:18)
	at net.serenitybdd.screenplay.actions.OpenUrl$ByteBuddy$1G9wu9fN.performAs$accessor$XtVztxuR(Unknown Source)
	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 net.thucydides.core.steps.StepInterceptor.invokeMethod(StepInterceptor.java:503)
	at net.thucydides.core.steps.StepInterceptor.executeTestStepMethod(StepInterceptor.java:483)
	at net.thucydides.core.steps.StepInterceptor.runTestStep(StepInterceptor.java:457)
	at net.thucydides.core.steps.StepInterceptor.runOrSkipMethod(StepInterceptor.java:209)
	at net.thucydides.core.steps.StepInterceptor.testStepResult(StepInterceptor.java:196)
	at net.thucydides.core.steps.StepInterceptor.intercept(StepInterceptor.java:84)
	at net.thucydides.core.steps.ProxyConfiguration$InterceptorDispatcher.intercept(ProxyConfiguration.java:51)
	at net.serenitybdd.screenplay.actions.OpenUrl$ByteBuddy$1G9wu9fN.performAs(Unknown Source)
	at net.serenitybdd.screenplay.Actor.performTask(Actor.java:277)
	at net.serenitybdd.screenplay.Actor.perform(Actor.java:256)
	at net.serenitybdd.screenplay.Actor.attemptsTo(Actor.java:197)
	at net.serenitybdd.screenplay.Actor.attemptsTo(Actor.java:204)
	at xxx.automation.tests.denwaShoudan.NewVerTests.test(NewVerTests.java:18)
	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.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:725)
	at org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)
	at org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131)
	at org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:149)
	at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(TimeoutExtension.java:140)
	at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(TimeoutExtension.java:84)
	at org.junit.jupiter.engine.execution.ExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(ExecutableInvoker.java:115)
	at org.junit.jupiter.engine.execution.ExecutableInvoker.lambda$invoke$0(ExecutableInvoker.java:105)
	at org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:106)
	at org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:64)
	at org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:45)
	at org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:37)
	at org.junit.jupiter.engine.execution.ExecutableInvoker.invoke(ExecutableInvoker.java:104)
	at org.junit.jupiter.engine.execution.ExecutableInvoker.invoke(ExecutableInvoker.java:98)
	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(TestMethodTestDescriptor.java:214)
	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:210)
	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:135)
	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:66)
	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:151)
	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
	at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
	at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
	at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
	at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
	at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
	at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
	at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
	at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
	at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
	at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
	at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
	at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
	at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
	at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:35)
	at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57)
	at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:54)
	at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:107)
	at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:88)
	at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:54)
	at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:67)
	at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:52)
	at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:114)
	at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:86)
	at org.junit.platform.launcher.core.DefaultLauncherSession$DelegatingLauncher.execute(DefaultLauncherSession.java:86)
	at org.junit.platform.launcher.core.SessionPerRequestLauncher.execute(SessionPerRequestLauncher.java:53)
	at com.intellij.junit5.JUnit5IdeaTestRunner.startRunnerWithArgs(JUnit5IdeaTestRunner.java:71)
	at com.intellij.rt.junit.IdeaTestRunner$Repeater$1.execute(IdeaTestRunner.java:38)
	at com.intellij.rt.execution.junit.TestsRepeater.repeat(TestsRepeater.java:11)
	at com.intellij.rt.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:35)
	at com.intellij.rt.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:235)
	at com.intellij.rt.junit.JUnitStarter.main(JUnitStarter.java:54)
Caused by: org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure.
Build info: version: '4.1.3', revision: '7b1ebf28ef'
System info: host: '6780-AnhPV-Laptop-Mac.local', ip: 'fe80:0:0:0:1c03:10fd:9808:d5b6%en0', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '11.3', java.version: '11.0.12'
Driver info: org.openqa.selenium.chrome.ChromeDriver
Command: [null, newSession {capabilities=[Capabilities {acceptInsecureCerts: false, browserName: chrome, goog:chromeOptions: {args: [], extensions: []}}], desiredCapabilities=Capabilities {acceptInsecureCerts: false, autodownload: true, base.url: , browserName: chrome, goog:chromeOptions: {args: [], extensions: []}, provided.mydriver: xxx.automation.utils.C..., provided.type: mydriver}}]
	at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:585)
	at org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:248)
	at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:164)
	at org.openqa.selenium.chromium.ChromiumDriver.<init>(ChromiumDriver.java:108)
	at org.openqa.selenium.chrome.ChromeDriver.<init>(ChromeDriver.java:106)
	at org.openqa.selenium.chrome.ChromeDriver.<init>(ChromeDriver.java:93)
	at org.openqa.selenium.chrome.ChromeDriver.<init>(ChromeDriver.java:82)
	at net.serenitybdd.core.webdriver.driverproviders.ChromeDriverProvider.lambda$newInstance$0(ChromeDriverProvider.java:67)
	at net.serenitybdd.core.webdriver.driverproviders.ProvideNewDriver.withConfiguration(ProvideNewDriver.java:40)
	at net.serenitybdd.core.webdriver.driverproviders.ChromeDriverProvider.newInstance(ChromeDriverProvider.java:63)
	at net.thucydides.core.webdriver.WebDriverFactory.createWebDriver(WebDriverFactory.java:157)
	at net.thucydides.core.webdriver.WebDriverFactory.newWebdriverInstance(WebDriverFactory.java:136)
	... 94 more
Caused by: java.lang.RuntimeException: NettyHttpHandler request execution error
	at org.openqa.selenium.remote.http.netty.NettyHttpHandler.makeCall(NettyHttpHandler.java:83)
	at org.openqa.selenium.remote.http.AddSeleniumUserAgent.lambda$apply$0(AddSeleniumUserAgent.java:42)
	at org.openqa.selenium.remote.http.Filter.lambda$andFinally$1(Filter.java:56)
	at org.openqa.selenium.remote.http.netty.NettyHttpHandler.execute(NettyHttpHandler.java:51)
	at org.openqa.selenium.remote.http.AddSeleniumUserAgent.lambda$apply$0(AddSeleniumUserAgent.java:42)
	at org.openqa.selenium.remote.http.Filter.lambda$andFinally$1(Filter.java:56)
	at org.openqa.selenium.remote.http.netty.NettyClient.execute(NettyClient.java:124)
	at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:102)
	at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:84)
	at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:62)
	at org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:156)
	at org.openqa.selenium.remote.service.DriverCommandExecutor.invokeExecute(DriverCommandExecutor.java:167)
	at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:142)
	at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:567)
	... 105 more
Caused by: java.util.concurrent.ExecutionException: java.lang.ClassNotFoundException: io.netty.handler.codec.compression.Brotli
	at java.base/java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:395)
	at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2022)
	at org.asynchttpclient.netty.NettyResponseFuture.get(NettyResponseFuture.java:206)
	at org.openqa.selenium.remote.http.netty.NettyHttpHandler.makeCall(NettyHttpHandler.java:66)
	... 118 more
Caused by: java.lang.ClassNotFoundException: io.netty.handler.codec.compression.Brotli
	at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:581)
	at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
	at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522)
	at io.netty.handler.codec.http.HttpContentDecompressor.newContentDecoder(HttpContentDecompressor.java:70)
	at io.netty.handler.codec.http.HttpContentDecoder.decode(HttpContentDecoder.java:100)
	at io.netty.handler.codec.http.HttpContentDecoder.decode(HttpContentDecoder.java:47)
	at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:88)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365)
	at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357)
	at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:436)
	at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:321)
	at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:308)
	at io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:422)
	at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:276)
	at io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365)
	at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357)
	at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379)
	at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365)
	at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919)
	at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166)
	at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:722)
	at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:658)
	at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:584)
	at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:496)
	at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:986)
	at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
	at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
	at java.base/java.lang.Thread.run(Thread.java:829)

17:18:45.595 [main] DEBUG net.thucydides.core.steps.StepEventBus - Test suite started for class xxx.automation.tests.denwaShoudan.NewVerTests
17:18:55.836 [main] DEBUG net.serenitybdd.junit5.SerenityTestExecutionListener - No action done at executionFinished because testIdentifier is null
17:18:55.837 [main] DEBUG net.serenitybdd.junit5.SerenityTestExecutionListener - ->GenerateReportsForTest  TestIdentifier [uniqueId = [engine:junit-vintage], parentId = null, displayName = 'JUnit Vintage', legacyReportingName = 'JUnit Vintage', source = null, tags = [], type = CONTAINER]
17:18:55.837 [main] DEBUG net.serenitybdd.junit5.SerenityTestExecutionListener - ->GenerateReportsForTest  TestIdentifier [uniqueId = [engine:junit-jupiter], parentId = null, displayName = 'JUnit Jupiter', legacyReportingName = 'JUnit Jupiter', source = null, tags = [], type = CONTAINER]
17:18:55.837 [main] DEBUG net.serenitybdd.junit5.SerenityTestExecutionListener - ->GenerateReportsForTest  TestIdentifier [uniqueId = [engine:junit-jupiter]/[class:xxx.automation.tests.denwaShoudan.NewVerTests], parentId = [engine:junit-jupiter], displayName = 'NewVerTests', legacyReportingName = 'xxx.automation.tests.denwaShoudan.NewVerTests', source = ClassSource [className = 'xxx.automation.tests.denwaShoudan.NewVerTests', filePosition = null], tags = [], type = CONTAINER]
17:18:55.838 [main] DEBUG net.serenitybdd.junit5.SerenityTestExecutionListener - ->GenerateReportsForTest  TestIdentifier [uniqueId = [engine:junit-jupiter]/[class:xxx.automation.tests.denwaShoudan.NewVerTests]/[method:test()], parentId = [engine:junit-jupiter]/[class:xxx.automation.tests.denwaShoudan.NewVerTests], displayName = 'test()', legacyReportingName = 'test()', source = MethodSource [className = 'xxx.automation.tests.denwaShoudan.NewVerTests', methodName = 'test', methodParameterTypes = ''], tags = [], type = TEST]
17:18:55.855 [main] DEBUG net.thucydides.core.reports.ReportService - Reporting formats: [JSON, HTML]
17:18:56.170 [main] DEBUG net.thucydides.core.reports.ReportService - Reporting formats: [JSON, HTML]
17:18:56.194 [main] DEBUG net.thucydides.core.reports.ReportService - Generating reports for 0 test outcomes using: net.thucydides.core.reports.json.JSONTestOutcomeReporter@7cbaf548
17:18:56.194 [main] DEBUG net.thucydides.core.reports.ReportService - Shutting down executor service
17:18:56.194 [main] DEBUG net.thucydides.core.reports.ReportService - Reports generated in: 0 ms
17:18:56.194 [main] DEBUG net.thucydides.core.reports.ReportService - Generating reports for 0 test outcomes using: net.thucydides.core.reports.html.HtmlAcceptanceTestReporter@598de6bf
17:18:56.195 [main] DEBUG net.thucydides.core.reports.ReportService - Shutting down executor service
17:18:56.195 [main] DEBUG net.thucydides.core.reports.ReportService - Reports generated in: 0 ms
17:18:56.198 [main] DEBUG net.thucydides.core.reports.ReportService - Generating report for configuration
17:18:56.204 [main] DEBUG net.thucydides.core.reports.ReportService - Generating reports for 0 test outcomes using: net.thucydides.core.reports.json.JSONTestOutcomeReporter@7cbaf548
17:18:56.204 [main] DEBUG net.thucydides.core.reports.ReportService - Shutting down executor service
17:18:56.204 [main] DEBUG net.thucydides.core.reports.ReportService - Reports generated in: 0 ms
17:18:56.204 [main] DEBUG net.thucydides.core.reports.ReportService - Generating reports for 0 test outcomes using: net.thucydides.core.reports.html.HtmlAcceptanceTestReporter@598de6bf
17:18:56.204 [main] DEBUG net.thucydides.core.reports.ReportService - Shutting down executor service
17:18:56.204 [main] DEBUG net.thucydides.core.reports.ReportService - Reports generated in: 0 ms
17:18:56.205 [main] DEBUG net.thucydides.core.reports.ReportService - Generating report for configuration
17:18:56.210 [main] DEBUG net.thucydides.core.reports.ReportService - Generating reports for 0 test outcomes using: net.thucydides.core.reports.json.JSONTestOutcomeReporter@7cbaf548
17:18:56.210 [main] DEBUG net.thucydides.core.reports.ReportService - Shutting down executor service
17:18:56.210 [main] DEBUG net.thucydides.core.reports.ReportService - Reports generated in: 0 ms
17:18:56.210 [main] DEBUG net.thucydides.core.reports.ReportService - Generating reports for 0 test outcomes using: net.thucydides.core.reports.html.HtmlAcceptanceTestReporter@598de6bf
17:18:56.210 [main] DEBUG net.thucydides.core.reports.ReportService - Shutting down executor service
17:18:56.210 [main] DEBUG net.thucydides.core.reports.ReportService - Reports generated in: 0 ms
17:18:56.211 [main] DEBUG net.thucydides.core.reports.ReportService - Generating report for configuration
17:18:56.229 [main] DEBUG net.thucydides.core.reports.ReportService - Generating reports for 1 test outcomes using: net.thucydides.core.reports.json.JSONTestOutcomeReporter@7cbaf548
17:18:56.230 [pool-7-thread-1] DEBUG net.thucydides.core.reports.ReportService - Processing test outcome New ver tests:test
17:18:56.230 [pool-7-thread-1] DEBUG net.thucydides.core.reports.ReportService - net.thucydides.core.reports.json.JSONTestOutcomeReporter@7cbaf548: Generating report for test outcome: New ver tests:test
17:18:56.240 [pool-7-thread-1] DEBUG net.thucydides.core.reports.json.JSONTestOutcomeReporter - Generating JSON report for Test to file /Users/anhphan/Documents/Projects/xxx-Automation/cowell-test-automation/target/site/serenity/b34c0862bdb5b7bc4190b87ce4b6bb9672d9a1be193b9d383d077ed5deb8891e.json (using temp file /Users/anhphan/Documents/Projects/xxx-Automation/cowell-test-automation/target/site/serenity/b34c0862bdb5b7bc4190b87ce4b6bb9672d9a1be193b9d383d077ed5deb8891e.jsonb50630f0-e126-4c28-abaa-f2fd2d345bd1)
17:18:56.277 [pool-7-thread-1] DEBUG net.thucydides.core.reports.ReportService - Processing test outcome New ver tests:test done
17:18:56.277 [main] DEBUG net.thucydides.core.reports.ReportService - Shutting down executor service
17:18:56.277 [main] DEBUG net.thucydides.core.reports.ReportService - Reports generated in: 47 ms
17:18:56.277 [main] DEBUG net.thucydides.core.reports.ReportService - Generating reports for 1 test outcomes using: net.thucydides.core.reports.html.HtmlAcceptanceTestReporter@598de6bf
17:18:56.278 [pool-8-thread-1] DEBUG net.thucydides.core.reports.ReportService - Processing test outcome New ver tests:test
17:18:56.278 [pool-8-thread-1] DEBUG net.thucydides.core.reports.ReportService - net.thucydides.core.reports.html.HtmlAcceptanceTestReporter@598de6bf: Generating report for test outcome: New ver tests:test
17:18:56.282 [pool-8-thread-1] DEBUG net.thucydides.core.requirements.PackageRequirementsTagProvider - Loading requirements from package requirements at: xxx.automation.tests
17:18:56.513 [pool-8-thread-1] INFO serenity.reporting - 
-------------------
| TEST NAME:   test
| RESULT:      Broken
| REQUIREMENT: New ver tests
| REPORT:      file:///Users/anhphan/Documents/Projects/xxx-Automation/cowell-test-automation/target/site/serenity/b34c0862bdb5b7bc4190b87ce4b6bb9672d9a1be193b9d383d077ed5deb8891e.html
-------------------
17:18:56.902 [pool-8-thread-1] DEBUG net.thucydides.core.reports.ReportService - Processing test outcome New ver tests:test done
17:18:56.902 [main] DEBUG net.thucydides.core.reports.ReportService - Shutting down executor service
17:18:56.902 [main] DEBUG net.thucydides.core.reports.ReportService - Reports generated in: 625 ms
17:18:56.999 [main] DEBUG net.thucydides.core.reports.ReportService - Generating report for configuration
17:18:56.999 [main] DEBUG net.thucydides.core.reports.ReportService - Generating reports for 0 test outcomes using: net.thucydides.core.reports.json.JSONTestOutcomeReporter@7cbaf548
17:18:56.999 [main] DEBUG net.thucydides.core.reports.ReportService - Shutting down executor service
17:18:56.999 [main] DEBUG net.thucydides.core.reports.ReportService - Reports generated in: 0 ms
17:18:56.999 [main] DEBUG net.thucydides.core.reports.ReportService - Generating reports for 0 test outcomes using: net.thucydides.core.reports.html.HtmlAcceptanceTestReporter@598de6bf
17:18:56.999 [main] DEBUG net.thucydides.core.reports.ReportService - Shutting down executor service
17:18:56.999 [main] DEBUG net.thucydides.core.reports.ReportService - Reports generated in: 0 ms
17:18:57.000 [main] DEBUG net.thucydides.core.reports.ReportService - Generating report for configuration
17:18:57.001 [main] DEBUG net.serenitybdd.junit5.SerenityTestExecutionListener - ->TestPlanExecutionFinished org.junit.platform.launcher.core.InternalTestPlan@46565184

Process finished with exit code 255

@wakaleo
Copy link
Member

wakaleo commented Apr 1, 2022

Looks like you have some dependency conflicts. Do a dependency analysis to find and fix them.

@anhphan-cwvn
Copy link
Author

Should I use mvn dependency:tree?

@anhphan-cwvn
Copy link
Author

This is a bug of Selenium 4.0

Can solve this issue by adding:

https://mvnrepository.com/artifact/io.netty/netty-handler/4.1.75.Final

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants