File tree Expand file tree Collapse file tree 6 files changed +16
-9
lines changed Expand file tree Collapse file tree 6 files changed +16
-9
lines changed Original file line number Diff line number Diff 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 ( )
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 3232## Execute a specific example
3333To 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.
Original file line number Diff line number Diff line change 99
1010
1111@pytest .mark .skipif (sys .platform == "win32" , reason = "Gets stuck on Windows, passes locally" )
12- @pytest .mark .sanity
1312def 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
3029def test_start_remote_ignore_certs (grid_server ):
3130 proxy = Proxy ({"proxyType" : ProxyType .AUTODETECT })
3231 client_config = ClientConfig (remote_server_addr = grid_server ,
Original file line number Diff line number Diff 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 ]]
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments