selenium 4+六月5:与Selenium 4并行运行脚本时,无限浏览器启动

fjaof16o  于 2022-12-18  发布在  其他
关注(0)|答案(2)|浏览(134)

我使用webdrivermanager = '5.0.3'(Selenium 3.141.5,)+ Junit 5 + www.example.com文件配置和设计了很好的框架junit-platform.properties来并行运行测试脚本,无缝运行,没有任何问题。我可以运行基于标签和基于包的脚本。
现在我将Selenium版本升级到4.1.2,当我运行单个脚本时,它是完美的,但当并行运行脚本时,无限的浏览器启动,即使线程计数在www.example.com文件中被限制为5junit-platform.properties。

junit.jupiter.execution.parallel.enabled=false
       junit.jupiter.execution.parallel.mode.default=same_thread
       junit.jupiter.execution.parallel.mode.classes.default=concurrent
       junit.jupiter.execution.parallel.config.strategy=fixed
       junit.jupiter.execution.parallel.config.fixed.parallelism=5

我在构建gradle文件中使用了下面提到的依赖项。

repositories {
                jcenter()
                mavenCentral()
            }

            ext {
            //    selenium = '3.141.59'
                webdrivermanager = '5.0.3'

            //    junitJupiterVersion = '5.8.2'
                selenium = '4.1.2'
                seleniumJupiterVersion  = '4.0.1'
                junitJupiterVersion = '5.7.0'
            }
            dependencies {

                compile("org.junit.jupiter:junit-jupiter:${junitJupiterVersion}")
                compile("org.seleniumhq.selenium:selenium-java:${selenium}")
            //    compile("io.github.bonigarcia:selenium-jupiter:${seleniumJupiterVersion}")

            //    compile("org.seleniumhq.selenium:selenium-java:${selenium}")
            //    compile("io.github.bonigarcia:webdrivermanager:${webdrivermanager}")
            //    testImplementation "org.seleniumhq.selenium:selenium-chrome-driver:${selenium}"
            //    testImplementation "org.seleniumhq.selenium:selenium-firefox-driver:${selenium}"
            //    testImplementation "org.seleniumhq.selenium:selenium-ie-driver:${selenium}"
            //    testImplementation "org.seleniumhq.selenium:selenium-edge-driver:${selenium}"
            //    testImplementation "org.seleniumhq.selenium:selenium-safari-driver:${selenium}"
            //    testImplementation "org.seleniumhq.selenium:selenium-remote-driver:${selenium}"
            //    testImplementation "org.seleniumhq.selenium:selenium-support:${selenium}"
            //    testImplementation('org.junit.jupiter:junit-jupiter:5.5.1')
            //    testImplementation 'org.hamcrest:hamcrest:2.1'
            //    testImplementation 'org.hamcrest:hamcrest-library:2.1'
            //    testCompile("org.junit.jupiter:junit-jupiter-api:5.6.2")
            //    testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
            //    testRuntime("org.junit.platform:junit-platform-launcher:1.4.2")
            //    testCompile('io.github.bonigarcia:selenium-jupiter:4.0.1')
                compile group: 'io.qameta.allure', name: 'allure-junit5', version: '2.11.0'
                compile group: 'org.apache.pdfbox', name: 'pdfbox', version: '2.0.16'
                implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.17.1'
            //    implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.1'
                compile group: 'io.qameta.allure', name: 'allure-gradle', version: '2.7.0'
                compile 'org.apache.maven.plugins:maven-surefire-plugin:2.21.0'
            //    compile('com.assertthat:selenium-shutterbug:1.5')
                compile 'org.slf4j:slf4j-nop:1.7.25'
                implementation group: 'javax.mail', name: 'mail', version: '1.4.7'
            //    implementation group: 'javax.mail', name: 'javax.mail-api', version: '1.6.2'
            //    runtimeClasspath group: 'javax.mail', name: 'javax.mail-api', version: '1.6.2'
            //    compile group: 'net.lightbody.bmp', name: 'browsermob-core', version: '2.1.4'
            //    compile group: 'org.postgresql', name: 'postgresql', version: '42.2.14'
                compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.12.4'
                compile group: 'ru.yandex.qatools.ashot', name: 'ashot', version: '1.5.4'
            //    implementation group: 'org.json', name: 'json', version: '20201115'
                implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
            //    testImplementation group: 'org.junit.platform', name: 'junit-platform-launcher', version: '1.7.2'
            //    testImplementation group: 'org.junit.platform', name: 'junit-platform-runner', version: '1.7.2'
            //    testImplementation group: 'org.junit.platform', name: 'junit-platform-surefire-provider', version: '1.3.2'

            }

项目组成部分:Selenium 4 +Junit5 +主机平台属性文件

我们非常感谢您为解决此问题提供任何帮助。

enyaitl3

enyaitl31#

抱歉,如果这个问题仍然相关。首先,您可以使用@ResourceLock(“SYSTEM_OUT”)注解标记所有测试类。请参阅此处和以下有关同步的详细信息。但是,这可能没有帮助。然后,您可以另外实现ParrallelExecutionConfiguration和ParallelExecutionConfigurationStrategy,并将此实现写入junit-platform.properties文件,例如
junit.jupiter.execution.parallel.config.custom.class =基础并行策略
其中“base”- package和“ParallelStrategy”-上述接口的实现(我只返回线程值的数量)。此外,您还必须明确声明自定义策略:
junit. jupiter.执行.并行.配置.策略=自定义
为什么它对 selenium 3+起作用,但对第四个停止了-我不知道。但这些步骤解决了我和你同样的问题。

lx0bsm1f

lx0bsm1f2#

有几个部件可能会导致这种情况。

这两个问题都建议定义一个限制MaxPoolSize的自定义策略。此策略有效,但仅适用于JDK 9及更高版本。在ForkJoinPoolHierarchicalTestExecutorService中创建的ForkJoinPool在JDK 8和JDK 9+之间是不同的,只有后者使用策略MaxPoolSize。
因此,如果您使用JDK 8,我认为唯一的选择是使用ResourceLocks,否则,定义一个自定义策略。
请参阅我的SO post maven-failsafe-plugin not honoring fixed parallelism in JUnit5,了解几乎相同的问题。

相关问题