Skip to content

Commit 868df43

Browse files
authored
Merge branch 'trunk' into document_selenium_bindings
2 parents 4b6f3b2 + 9d94223 commit 868df43

File tree

6 files changed

+16
-9
lines changed

6 files changed

+16
-9
lines changed

examples/dotnet/SeleniumDocs/BiDi/CDP/NetworkTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public async Task PerformanceMetrics()
111111
var session = ((IDevTools)driver).GetDevToolsSession();
112112
var domains = session.GetVersionSpecificDomains<OpenQA.Selenium.DevTools.V130.DevToolsSessionDomains>();
113113

114-
await domains.Performance.Enable(new OpenQA.Selenium.DevTools.V13.Performance.EnableCommandSettings());
114+
await domains.Performance.Enable(new OpenQA.Selenium.DevTools.V130.Performance.EnableCommandSettings());
115115
var metricsResponse =
116116
await session.SendCommand<GetMetricsCommandSettings, GetMetricsCommandResponse>(
117117
new GetMetricsCommandSettings()

examples/dotnet/SeleniumDocs/SeleniumDocs.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.7.1" />
1111
<PackageReference Include="MSTest.TestAdapter" Version="3.6.0" />
1212
<PackageReference Include="MSTest.TestFramework" Version="3.6.0" />
13-
<PackageReference Include="Selenium.Support" Version="4.25.0" />
14-
<PackageReference Include="Selenium.WebDriver" Version="4.25.0" />
13+
<PackageReference Include="Selenium.Support" Version="4.26.1" />
14+
<PackageReference Include="Selenium.WebDriver" Version="4.26.1" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

examples/python/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pytest
3232
## Execute a specific example
3333
To run a specific Selenium Python example, use the following command:
3434
```bash
35-
python first_script.py
35+
pytest path/to/test_script.py
3636
```
3737

38-
Make sure to replace `first_script.py` with the path and name of the example you want to run.
38+
Make sure to replace `path/to/test_script.py` with the path and name of the example you want to run.

examples/python/tests/drivers/test_http_client.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99

1010

1111
@pytest.mark.skipif(sys.platform == "win32", reason="Gets stuck on Windows, passes locally")
12-
@pytest.mark.sanity
1312
def test_start_remote_with_client_config(grid_server):
1413
proxy = Proxy({"proxyType": ProxyType.AUTODETECT})
1514
retries = Retry(connect=2, read=2, redirect=2)
1615
timeout = Timeout(connect=300, read=3600)
1716
client_config = ClientConfig(remote_server_addr=grid_server,
1817
proxy=proxy,
19-
init_args_for_pool_manager={"retries": retries, "timeout": timeout},
18+
init_args_for_pool_manager={
19+
"init_args_for_pool_manager": {"retries": retries, "timeout": timeout}},
2020
ca_certs=_get_resource_path("tls.crt"),
2121
username="admin", password="myStrongPassword")
2222
options = webdriver.ChromeOptions()
@@ -26,7 +26,6 @@ def test_start_remote_with_client_config(grid_server):
2626

2727

2828
@pytest.mark.skipif(sys.platform == "win32", reason="Gets stuck on Windows, passes locally")
29-
@pytest.mark.sanity
3029
def test_start_remote_ignore_certs(grid_server):
3130
proxy = Proxy({"proxyType": ProxyType.AUTODETECT})
3231
client_config = ClientConfig(remote_server_addr=grid_server,

website_and_docs/hugo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ enable = false
234234
desc = "Development takes place here!"
235235
[[params.links.developer]]
236236
name = "Slack"
237-
url = "https://join.slack.com/t/seleniumhq/shared_invite/zt-2o0ilal4i-WzCcTdrlpmmsuE2TDILmgg"
237+
url = "https://join.slack.com/t/seleniumhq/shared_invite/zt-2stlcmc6b-Hww~3r3yAzquhSq4riOFxA"
238238
icon = "fab fa-slack"
239239
desc = "Chat with other project developers and users in Slack"
240240
[[params.links.developer]]

website_and_docs/layouts/downloads/list.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,14 @@
3131
To use the Selenium Server in a Grid configuration see the
3232
<a href="https://selenium.dev/documentation/en/grid/">documentation</a>.
3333
</p>
34+
<p class="card-text">
35+
To run the Grid with popular browsers using Docker see the
36+
<a href="https://github.com/SeleniumHQ/docker-selenium">repository</a>.
37+
</p>
38+
<p class="card-text">
39+
To deploy the Grid to Kubernetes cluster see the Helm chart
40+
<a href="https://github.com/SeleniumHQ/docker-selenium/blob/trunk/charts/selenium-grid/README.md">configuration</a>.
41+
</p>
3442
</div>
3543
</div>
3644
</div>

0 commit comments

Comments
 (0)