Skip to content

Commit b7c3b6e

Browse files
authored
Merge branch 'trunk' into renovate/org.seleniumhq.selenium-selenium-java-4.x
2 parents 9ca9fe5 + ffd75ba commit b7c3b6e

File tree

12 files changed

+46
-35
lines changed

12 files changed

+46
-35
lines changed

examples/dotnet/SeleniumDocs/SeleniumDocs.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77

88
<ItemGroup>
99
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
10-
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.7.0" />
10+
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.7.1" />
1111
<PackageReference Include="MSTest.TestAdapter" Version="3.5.0" />
1212
<PackageReference Include="MSTest.TestFramework" Version="3.5.0" />
13-
<PackageReference Include="Selenium.Support" Version="4.22.0" />
14-
<PackageReference Include="Selenium.WebDriver" Version="4.22.0" />
13+
<PackageReference Include="Selenium.Support" Version="4.23.0" />
14+
<PackageReference Include="Selenium.WebDriver" Version="4.23.0" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

examples/javascript/package-lock.json

Lines changed: 21 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"license": "Apache-2.0",
99
"dependencies": {
1010
"assert": "2.1.0",
11-
"selenium-webdriver": "4.22.0"
11+
"selenium-webdriver": "4.23.0"
1212
},
1313
"devDependencies": {
1414
"mocha": "10.6.0"

examples/kotlin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<maven-surefire-plugin.version>3.3.1</maven-surefire-plugin.version>
2121

2222
<java.version>1.8</java.version>
23-
<selenium.version>4.22.0</selenium.version>
23+
<selenium.version>4.23.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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
selenium==4.22.0
1+
selenium==4.23.0
22
pytest
33
trio
44
pytest-trio

examples/python/tests/bidi/cdp/test_network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import pytest
44
from selenium.webdriver.common.by import By
5-
from selenium.webdriver.common.devtools.v124.network import Headers
5+
from selenium.webdriver.common.devtools.v125.network import Headers
66

77

88
@pytest.mark.trio

examples/ruby/Gemfile

Lines changed: 1 addition & 1 deletion
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', '~> 3.0'
1010
gem 'selenium-devtools', '= 0.126.0'
11-
gem 'selenium-webdriver', '= 4.22.0'
11+
gem 'selenium-webdriver', '= 4.23.0'

examples/ruby/Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ GEM
1515
rainbow (3.1.1)
1616
rake (13.2.1)
1717
regexp_parser (2.9.2)
18-
rexml (3.3.1)
18+
rexml (3.3.2)
1919
strscan
2020
rspec (3.13.0)
2121
rspec-core (~> 3.13.0)
@@ -49,15 +49,15 @@ GEM
4949
rubyzip (2.3.2)
5050
selenium-devtools (0.126.0)
5151
selenium-webdriver (~> 4.2)
52-
selenium-webdriver (4.22.0)
52+
selenium-webdriver (4.23.0)
5353
base64 (~> 0.2)
5454
logger (~> 1.4)
5555
rexml (~> 3.2, >= 3.2.5)
5656
rubyzip (>= 1.2.2, < 3.0)
5757
websocket (~> 1.0)
5858
strscan (3.1.0)
5959
unicode-display_width (2.5.0)
60-
websocket (1.2.10)
60+
websocket (1.2.11)
6161

6262
PLATFORMS
6363
arm64-darwin-21
@@ -73,7 +73,7 @@ DEPENDENCIES
7373
rubocop (~> 1.35)
7474
rubocop-rspec (~> 3.0)
7575
selenium-devtools (= 0.126.0)
76-
selenium-webdriver (= 4.22.0)
76+
selenium-webdriver (= 4.23.0)
7777

7878
BUNDLED WITH
7979
2.5.6

website_and_docs/content/documentation/webdriver/bidi/logging.en.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Record or take actions on `console.log` events.
2424
{{< badge-implementation >}}
2525
{{< /tab >}}
2626
{{< tab header="Python" >}}
27-
{{< gh-codeblock path="/examples/python/tests/bidi/test_logging.py#L11" >}}
27+
{{< gh-codeblock path="/examples/python/tests/bidi/test_bidi_logging.py#L11" >}}
2828
{{< /tab >}}
2929
{{< tab header="CSharp" >}}
3030
{{< badge-implementation >}}
@@ -49,7 +49,7 @@ You need to store the ID returned when adding the handler to delete it.
4949
{{< badge-implementation >}}
5050
{{< /tab >}}
5151
{{< tab header="Python" >}}
52-
{{< gh-codeblock path="/examples/python/tests/bidi/test_logging.py#L23-24" >}}
52+
{{< gh-codeblock path="/examples/python/tests/bidi/test_bidi_logging.py#L23-24" >}}
5353
{{< /tab >}}
5454
{{< tab header="CSharp" >}}
5555
{{< badge-implementation >}}
@@ -76,7 +76,7 @@ Record or take actions on JavaScript exception events.
7676
{{< badge-implementation >}}
7777
{{< /tab >}}
7878
{{< tab header="Python" >}}
79-
{{< gh-codeblock path="/examples/python/tests/bidi/test_logging.py#L35" >}}
79+
{{< gh-codeblock path="/examples/python/tests/bidi/test_bidi_logging.py#L35" >}}
8080
{{< /tab >}}
8181
{{< tab header="CSharp" >}}
8282
{{< badge-implementation >}}
@@ -101,7 +101,7 @@ You need to store the ID returned when adding the handler to delete it.
101101
{{< badge-implementation >}}
102102
{{< /tab >}}
103103
{{< tab header="Python" >}}
104-
{{< gh-codeblock path="/examples/python/tests/bidi/test_logging.py#L47-48" >}}
104+
{{< gh-codeblock path="/examples/python/tests/bidi/test_bidi_logging.py#L47-48" >}}
105105
{{< /tab >}}
106106
{{< tab header="CSharp" >}}
107107
{{< badge-implementation >}}

website_and_docs/layouts/downloads/list.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<div class="card-body">
2626
<p class="card-text">
2727
Latest stable version
28-
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.22.0/selenium-server-4.22.0.jar">4.22.0</a>
28+
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.23.0/selenium-server-4.23.0.jar">4.23.0</a>
2929
</p>
3030
<p class="card-text">
3131
To use the Selenium Server in a Grid configuration see the
@@ -107,7 +107,7 @@ <h2 class="card-title">
107107
<div class="card-body">
108108
<h2 class="card-title">C# NuGet</h2>
109109
<p class="card-text w-lg-75">
110-
Nuget latest release is 4.22.0 Released on June 20, 2024.
110+
Nuget latest release is 4.23.0 Released on July 19, 2024.
111111
</p>
112112
<ul>
113113
<li>

website_and_docs/layouts/partials/selenium-clients-and-webdriver-bindings.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ <h2 id="bindings" class="card-title">Selenium Clients and WebDriver Language Bin
2727
<p class="card-text m-0 pb-1">
2828
Stable:
2929
<a href="https://www.nuget.org/packages/Selenium.WebDriver" class="card-link">
30-
4.22.0 (June 20, 2024)
30+
4.23.0 (July 19, 2024)
3131
</a>
3232
</p>
3333
<p class="card-text m-0 pb-1">
@@ -54,8 +54,8 @@ <h2 id="bindings" class="card-title">Selenium Clients and WebDriver Language Bin
5454
</p>
5555
<p class="card-text m-0 pb-1">
5656
Stable:
57-
<a href="https://rubygems.org/gems/selenium-webdriver/versions/4.22.0" class="card-link">
58-
4.22.0 (June 20, 2024)
57+
<a href="https://rubygems.org/gems/selenium-webdriver/versions/4.23.0" class="card-link">
58+
4.23.0 (July 19, 2024)
5959
</a>
6060
</p>
6161
<p class="card-text m-0 pb-1">
@@ -82,8 +82,8 @@ <h2 id="bindings" class="card-title">Selenium Clients and WebDriver Language Bin
8282
</p>
8383
<p class="card-text m-0 pb-1">
8484
Stable:
85-
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.22.0/selenium-java-4.22.0.zip" class="card-link">
86-
4.22.0 (June 20, 2024)
85+
<a href="https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.23.0/selenium-java-4.23.0.zip" class="card-link">
86+
4.23.0 (July 19, 2024)
8787
</a>
8888
</p>
8989
<p class="card-text m-0 pb-1">
@@ -111,7 +111,7 @@ <h2 id="bindings" class="card-title">Selenium Clients and WebDriver Language Bin
111111
<p class="card-text m-0 pb-1">
112112
Stable:
113113
<a href="https://pypi.python.org/pypi/selenium" class="card-link">
114-
4.22.0 (June 20, 2024)
114+
4.23.0 (July 19, 2024)
115115
</a>
116116
</p>
117117
<p class="card-text m-0 pb-1">
@@ -139,7 +139,7 @@ <h2 id="bindings" class="card-title">Selenium Clients and WebDriver Language Bin
139139
<p class="card-text m-0 pb-1">
140140
Stable:
141141
<a href="https://npmjs.org/package/selenium-webdriver" class="card-link">
142-
4.22.0 (June 20, 2024)
142+
4.23.0 (July 19, 2024)
143143
</a>
144144
</p>
145145
<p class="card-text m-0 pb-1">

0 commit comments

Comments
 (0)