Skip to content

Commit 4516029

Browse files
Merge branch 'trunk' into frame-example-python-pal
2 parents 1e5ec37 + cf91779 commit 4516029

File tree

15 files changed

+37
-36
lines changed

15 files changed

+37
-36
lines changed

examples/dotnet/SeleniumDocs/BaseTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class BaseTest
1717
protected IWebDriver driver;
1818
protected Uri GridUrl;
1919
private Process _webserverProcess;
20-
private const string ServerJarName = "selenium-server-4.29.0.jar";
20+
private const string ServerJarName = "selenium-server-4.30.0.jar";
2121
private static readonly string BaseDirectory = AppContext.BaseDirectory;
2222
private const string RelativePathToGrid = "../../../../../";
2323
private readonly string _examplesDirectory = Path.GetFullPath(Path.Combine(BaseDirectory, RelativePathToGrid));

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="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.29.0" />
14-
<PackageReference Include="Selenium.WebDriver" Version="4.29.0" />
13+
<PackageReference Include="Selenium.Support" Version="4.30.0" />
14+
<PackageReference Include="Selenium.WebDriver" Version="4.30.0" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

examples/java/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<maven.compiler.source>17</maven.compiler.source>
1414
<maven.compiler.target>17</maven.compiler.target>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16-
<selenium.version>4.29.0</selenium.version>
16+
<selenium.version>4.30.0</selenium.version>
1717
</properties>
1818

1919
<repositories>

examples/javascript/package-lock.json

+8-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.1.0",
11-
"selenium-webdriver": "4.29.0"
11+
"selenium-webdriver": "4.30.0"
1212
},
1313
"devDependencies": {
1414
"mocha": "11.1.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.5.2</maven-surefire-plugin.version>
2121

2222
<java.version>1.8</java.version>
23-
<selenium.version>4.29.0</selenium.version>
23+
<selenium.version>4.30.0</selenium.version>
2424

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

examples/python/tests/conftest.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def server_old(request):
148148
os.path.abspath(__file__)
149149
)
150150
),
151-
"selenium-server-4.29.0.jar",
151+
"selenium-server-4.30.0.jar",
152152
)
153153

154154
def wait_for_server(url, timeout):
@@ -206,7 +206,7 @@ def server():
206206
)
207207
)
208208
),
209-
"selenium-server-4.29.0.jar",
209+
"selenium-server-4.30.0.jar",
210210
)
211211

212212
args = [
@@ -279,7 +279,7 @@ def grid_server():
279279
)
280280
)
281281
),
282-
"selenium-server-4.29.0.jar",
282+
"selenium-server-4.30.0.jar",
283283
)
284284

285285
args = [

examples/ruby/Gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ gem 'rake', '~> 13.0'
77
gem 'rspec', '~> 3.0'
88
gem 'rubocop', '~> 1.35'
99
gem 'rubocop-rspec', '~> 3.0'
10-
gem 'selenium-devtools', '= 0.133.0'
11-
gem 'selenium-webdriver', '= 4.29.1'
10+
gem 'selenium-devtools', '= 0.134.0'
11+
gem 'selenium-webdriver', '= 4.30.1'

examples/ruby/Gemfile.lock

+5-4
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ GEM
4848
rubocop (~> 1.72, >= 1.72.1)
4949
ruby-progressbar (1.13.0)
5050
rubyzip (2.4.1)
51-
selenium-devtools (0.133.0)
51+
selenium-devtools (0.134.0)
5252
selenium-webdriver (~> 4.2)
53-
selenium-webdriver (4.29.1)
53+
selenium-webdriver (4.30.1)
5454
base64 (~> 0.2)
5555
logger (~> 1.4)
5656
rexml (~> 3.2, >= 3.2.5)
@@ -63,6 +63,7 @@ PLATFORMS
6363
arm64-darwin-21
6464
arm64-darwin-22
6565
arm64-darwin-23
66+
arm64-darwin-24
6667
x86_64-darwin-19
6768
x86_64-darwin-20
6869
x86_64-darwin-22
@@ -73,8 +74,8 @@ DEPENDENCIES
7374
rspec (~> 3.0)
7475
rubocop (~> 1.35)
7576
rubocop-rspec (~> 3.0)
76-
selenium-devtools (= 0.133.0)
77-
selenium-webdriver (= 4.29.1)
77+
selenium-devtools (= 0.134.0)
78+
selenium-webdriver (= 4.30.1)
7879

7980
BUNDLED WITH
8081
2.5.6

examples/ruby/spec/actions_api/keys_spec.rb

+1-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@
5656
expect(text_field.attribute('value')).to eq 'Selenium!'
5757
end
5858

59-
it 'copy and paste', except: {browser: :chrome,
60-
reason: 'https://bugs.chromium.org/p/chromedriver/issues/detail?id=4264'} do
59+
it 'copy and paste' do
6160
driver.get 'https://www.selenium.dev/selenium/web/single_text_input.html'
6261
wait.until { driver.find_element(id: 'textInput').attribute('autofocus') }
6362

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Specify the dependency in the project `build.gradle` file as `testImplementation
3737
{{% /tab %}}
3838
{{% tab header="Python" %}}
3939
The minimum supported Python version for each Selenium version can be found
40-
in `Supported Python Versions` on [PyPi](https://pypi.org/project/selenium/)
40+
in "Supported Python Versions" on [PyPi](https://pypi.org/project/selenium/).
4141

4242
There are a couple different ways to install Selenium.
4343

@@ -50,11 +50,11 @@ pip install selenium
5050

5151
### Download
5252

53-
Alternatively you can download the [PyPI source archive](https://pypi.org/project/selenium/#files)
54-
(selenium-x.x.x.tar.gz) and install it using _setup.py_:
53+
Alternatively you can download the [PyPI Built Distribution](https://pypi.org/project/selenium/#files)
54+
(selenium-x.x.x.-py3-none-any.whl) and install it using _pip_:
5555

5656
```shell
57-
python setup.py install
57+
pip install selenium-x.x.x.-py3-none-any.whl
5858
```
5959
<br>
6060

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ pip install selenium
4848
### ダウンロード
4949

5050
または、ダウンロードすることもできます[PyPI ソースアーカイブ](https://pypi.org/project/selenium/#files)
51-
(selenium-x.x.x.tar.gz) を使用してインストールします _setup.py_
51+
(selenium-x.x.x.-py3-none-any.whl) を使用してインストールします _pip_:
5252

5353
```shell
54-
python setup.py install
54+
pip install selenium-x.x.x.-py3-none-any.whl
5555
```
5656
<br>
5757

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Especifique a dependência no `build.gradle` do seu projeto como `testImplementa
3737
{{% /tab %}}
3838
{{% tab header="Python" %}}
3939
A mínima versão suportada do Python para cada versão do Selenium pode ser encontrada
40-
em `Supported Python Versions` no [PyPi](https://pypi.org/project/selenium/)
40+
em "Supported Python Versions" no [PyPi](https://pypi.org/project/selenium/).
4141

4242
Existe muitas formas diferentes de instalar Selenium.
4343

@@ -51,10 +51,10 @@ pip install selenium
5151
### Download
5252

5353
Como uma alternativa você pode baixar o [código fonte PyPI](https://pypi.org/project/selenium/#files)
54-
(selenium-x.x.x.tar.gz) e instalar usando _setup.py_:
54+
(selenium-x.x.x.-py3-none-any.whl) e instalar usando _pip_:
5555

5656
```shell
57-
python setup.py install
57+
pip install selenium-x.x.x.-py3-none-any.whl
5858
```
5959
<br>
6060

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ pip install selenium
4848

4949
### 下载
5050

51-
此外你可以从这里下载 [PyPI source archive](https://pypi.org/project/selenium/#files)
52-
(selenium-x.x.x.tar.gz) 并通过: _setup.py_ 文件安装:
51+
此外你可以从这里下载 [PyPI Built Distribution](https://pypi.org/project/selenium/#files)
52+
(selenium-x.x.x.-py3-none-any.whl) 并通过: _pip_ 文件安装:
5353

5454
```shell
55-
python setup.py install
55+
pip install selenium-x.x.x.-py3-none-any.whl
5656
```
5757
<br>
5858

0 commit comments

Comments
 (0)