Skip to content

Commit de2fc75

Browse files
committed
update versions to 4.14
[deploy site]
1 parent 1fac04d commit de2fc75

File tree

13 files changed

+32
-26
lines changed

13 files changed

+32
-26
lines changed

examples/dotnet/SeleniumDocs/SeleniumDocs.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="6.23.1" />
1111
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
1212
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
13-
<PackageReference Include="Selenium.Support" Version="4.13.1" />
14-
<PackageReference Include="Selenium.WebDriver" Version="4.13.1" />
13+
<PackageReference Include="Selenium.Support" Version="4.14.0" />
14+
<PackageReference Include="Selenium.WebDriver" Version="4.14.0" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

examples/java/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ repositories {
1010
}
1111

1212
dependencies {
13-
testImplementation 'org.seleniumhq.selenium:selenium-java:4.13.0'
14-
testImplementation 'org.seleniumhq.selenium:selenium-http-jdk-client:4.13.0'
13+
testImplementation 'org.seleniumhq.selenium:selenium-java:4.14.0'
1514
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.10.0'
1615
}
1716

examples/java/pom.xml

+18-11
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
<version>1.0.0</version>
1010

1111
<properties>
12-
<maven.compiler.target>1.8</maven.compiler.target>
13-
<maven.compiler.source>1.8</maven.compiler.source>
12+
<surefire.parallel>1</surefire.parallel>
13+
<maven.compiler.source>11</maven.compiler.source>
14+
<maven.compiler.target>11</maven.compiler.target>
1415
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1516
</properties>
1617

@@ -28,19 +29,19 @@
2829
<dependency>
2930
<groupId>org.seleniumhq.selenium</groupId>
3031
<artifactId>selenium-java</artifactId>
31-
<version>4.13.0</version>
32-
</dependency>
33-
<dependency>
34-
<groupId>org.seleniumhq.selenium</groupId>
35-
<artifactId>selenium-http-jdk-client</artifactId>
36-
<version>4.13.0</version>
32+
<version>4.14.0</version>
3733
</dependency>
3834
<dependency>
3935
<groupId>org.junit.jupiter</groupId>
4036
<artifactId>junit-jupiter-engine</artifactId>
4137
<version>5.10.0</version>
4238
<scope>test</scope>
4339
</dependency>
40+
<dependency>
41+
<groupId>com.titusfortner</groupId>
42+
<artifactId>selenium-logger</artifactId>
43+
<version>2.2.1</version>
44+
</dependency>
4445
</dependencies>
4546

4647
<build>
@@ -50,9 +51,15 @@
5051
<artifactId>maven-surefire-plugin</artifactId>
5152
<version>3.1.2</version>
5253
<configuration>
53-
<systemPropertyVariables>
54-
<webdriver.http.factory>jdk-http-client</webdriver.http.factory>
55-
</systemPropertyVariables>
54+
<properties>
55+
<configurationParameters>
56+
junit.jupiter.execution.parallel.enabled = true
57+
junit.jupiter.execution.parallel.mode.default = concurrent
58+
junit.jupiter.execution.parallel.config.strategy = fixed
59+
junit.jupiter.execution.parallel.config.fixed.parallelism = ${surefire.parallel}
60+
junit.jupiter.execution.parallel.config.fixed.max-pool-size = ${surefire.parallel}
61+
</configurationParameters>
62+
</properties>
5663
</configuration>
5764
</plugin>
5865
</plugins>

examples/javascript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"license": "Apache-2.0",
99
"dependencies": {
1010
"assert": "^2.0.0",
11-
"selenium-webdriver": "^4.13.0"
11+
"selenium-webdriver": "^4.14.0"
1212
},
1313
"devDependencies": {
1414
"mocha": "^10.2.0"

examples/kotlin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
2121

2222
<java.version>1.8</java.version>
23-
<selenium.version>4.13.0</selenium.version>
23+
<selenium.version>4.14.0</selenium.version>
2424

2525
<maven.compiler.target>${java.version}</maven.compiler.target>
2626
<maven.compiler.source>${java.version}</maven.compiler.source>

examples/python/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
selenium==4.13.0
1+
selenium==4.14.0
22
pytest
33
flake8

examples/ruby/Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ gem 'rspec', '~> 3.0'
88
gem 'rubocop', '~> 1.35'
99
gem 'rubocop-rspec', '~> 2.12'
1010
gem 'selenium-devtools', '~> 0.116'
11-
gem 'selenium-webdriver', '= 4.13.1'
11+
gem 'selenium-webdriver', '= 4.14.0'

examples/ruby/Gemfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ GEM
5454
rubyzip (2.3.2)
5555
selenium-devtools (0.117.0)
5656
selenium-webdriver (~> 4.2)
57-
selenium-webdriver (4.13.1)
57+
selenium-webdriver (4.14.0)
5858
rexml (~> 3.2, >= 3.2.5)
5959
rubyzip (>= 1.2.2, < 3.0)
6060
websocket (~> 1.0)
@@ -74,7 +74,7 @@ DEPENDENCIES
7474
rubocop (~> 1.35)
7575
rubocop-rspec (~> 2.12)
7676
selenium-devtools (~> 0.116)
77-
selenium-webdriver (= 4.13.1)
77+
selenium-webdriver (= 4.14.0)
7878

7979
BUNDLED WITH
8080
2.3.11

website_and_docs/content/documentation/webdriver/getting_started/install_library.en.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Installation of Selenium libraries for Java is accomplished using a build tool.
2727
### Maven
2828
Specify the dependencies in the project's `pom.xml` file:
2929

30-
{{< gh-codeblock path="examples/java/pom.xml#L28-L38" >}}
30+
{{< gh-codeblock path="examples/java/pom.xml#L29-L33" >}}
3131

3232
### Gradle
3333
Specify the dependency in the project `build.gradle` file as `testImplementation`:

website_and_docs/content/documentation/webdriver/getting_started/install_library.ja.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Installation of Selenium libraries for Java is accomplished using a build tool.
2525
### Maven
2626
Specify the dependencies in the project's `pom.xml` file:
2727

28-
{{< gh-codeblock path="examples/java/pom.xml#L28-L38" >}}
28+
{{< gh-codeblock path="examples/java/pom.xml#L29-L33" >}}
2929

3030
### Gradle
3131
Specify the dependency in the project `build.gradle` file as `testImplementation`:

website_and_docs/content/documentation/webdriver/getting_started/install_library.pt-br.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ A instalação da biblioteca Selenium para Java é feita a partir de uma build t
2727
### Maven
2828
Especifique a dependência no `pom.xml` do seu projeto.
2929

30-
{{< gh-codeblock path="examples/java/pom.xml#L28-L38" >}}
30+
{{< gh-codeblock path="examples/java/pom.xml#L29-L33" >}}
3131

3232
### Gradle
3333
Especifique a dependência no `build.gradle` do seu projeto como `testImplementation`:

website_and_docs/content/documentation/webdriver/getting_started/install_library.zh-cn.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ aliases: [
2525
### Maven
2626
具体的依赖位于项目中的 `pom.xml` 文件:
2727

28-
{{< gh-codeblock path="examples/java/pom.xml#L28-L38" >}}
28+
{{< gh-codeblock path="examples/java/pom.xml#L29-L33" >}}
2929

3030
### Gradle
3131
具体的依赖位于项目中的 `build.gradle` 文件中的 `testImplementation`:

website_and_docs/layouts/partials/selenium-nightly-builds.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ <h4 class="card-title font-weight-bold">Java</h4>
101101
</p>
102102
<p class="card-text">
103103
To use the Java SNAPSHOT versions, you will need to add the
104-
<a href="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/trunk/examples/java/pom.xml#L21-L29">
104+
<a href="https://github.com/SeleniumHQ/seleniumhq.github.io/blob/trunk/examples/java/pom.xml#L18-L26">
105105
snapshot repository
106106
</a>.
107107

0 commit comments

Comments
 (0)