Skip to content

Commit e23fe9a

Browse files
authored
Merge branch 'trunk' into dependabot/bundler/examples/ruby/json-2.10.2
2 parents a8dc33e + 9528679 commit e23fe9a

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
lines changed

examples/ruby/spec/actions_api/keys_spec.rb

Lines changed: 1 addition & 2 deletions
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

Lines changed: 4 additions & 4 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 3 additions & 3 deletions
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

Lines changed: 3 additions & 3 deletions
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

website_and_docs/layouts/downloads/list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ <h2 class="card-title">
115115
<div class="card-body">
116116
<h2 class="card-title">C# NuGet</h2>
117117
<p class="card-text w-lg-75">
118-
Nuget latest release is 4.29.0 Released on February 20, 2025.
118+
Nuget latest release is 4.30.0 Released on March 22, 2025.
119119
</p>
120120
<ul>
121121
<li>

0 commit comments

Comments
 (0)