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 >}}

0 commit comments

Comments
 (0)