Skip to content

Commit 4d17dc4

Browse files
authored
Add minimum version details for each Selenium language binding (SeleniumHQ#1176)
1 parent 2d8eff5 commit 4d17dc4

File tree

4 files changed

+92
-0
lines changed

4 files changed

+92
-0
lines changed

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

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,11 @@ Gradle 7.0 and above:
4747
dependencies {
4848
implementation group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '4.4.0'
4949
```
50+
## Supported Minimum Version
5051

52+
Make sure to use the Java version greater than or equal to the minimum supported version by Selenium.
53+
Java 8 is currently the minimum supported version by Selenium.
54+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/.bazelrc#L13).
5155

5256
{{% /tab %}}
5357
{{% tab header="Python" %}}
@@ -63,6 +67,11 @@ Alternatively you can download the [PyPI source archive](https://pypi.org/projec
6367
```shell
6468
python setup.py install
6569
```
70+
## Supported Minimum Version
71+
72+
Make sure to use the Python version greater than or equal to the minimum supported version by Selenium.
73+
Python 3.7 is currently the minimum supported version by Selenium.
74+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/py/setup.py#L41).
6675

6776
{{% /tab %}}
6877
{{% tab header="CSharp" %}}
@@ -121,6 +130,12 @@ Or add it to your `Gemfile`:
121130
gem 'selenium-webdriver', '~> 4.4'
122131
```
123132

133+
## Supported Minimum Version
134+
135+
Make sure to use the Ruby version greater than or equal to the minimum supported version by Selenium.
136+
Ruby 2.7 is currently the minimum supported version by Selenium.
137+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/selenium-webdriver.gemspec#L32).
138+
124139
{{% /tab %}}
125140
{{% tab header="JavaScript" %}}
126141
Installation of Selenium libraries for JavaScript can be done using npm:
@@ -129,6 +144,12 @@ gem 'selenium-webdriver', '~> 4.4'
129144
npm install selenium-webdriver
130145
```
131146

147+
## Supported Minimum Version
148+
149+
Make sure to use the Node version greater than or equal to the minimum supported version by Selenium.
150+
Node 10.15.0 is currently the minimum supported version by Selenium.
151+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/node/selenium-webdriver/package.json#L23).
152+
132153
{{% /tab %}}
133154
{{< tab header="Kotlin" >}}
134155
Use the Java bindings for Kotlin.

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@ dependencies {
4141
implementation group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '4.4.0'
4242
```
4343

44+
## Supported Minimum Version
45+
46+
Make sure to use the Java version greater than or equal to the minimum supported version by Selenium.
47+
Java 8 is currently the minimum supported version by Selenium.
48+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/.bazelrc#L13).
49+
4450
{{% /tab %}}
4551
{{% tab header="Python" %}}
4652
PythonへのSeleniumライブラリのインストールはpipを使います。
@@ -55,6 +61,12 @@ pip install selenium
5561
```shell
5662
python setup.py install
5763
```
64+
## Supported Minimum Version
65+
66+
Make sure to use the Python version greater than or equal to the minimum supported version by Selenium.
67+
Python 3.7 is currently the minimum supported version by Selenium.
68+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/py/setup.py#L41).
69+
5870
{{% /tab %}}
5971
{{% tab header="CSharp" %}}
6072
C#へのSeleniumライブラリのインストールはNuGetを使います。
@@ -103,13 +115,25 @@ Now you can use the examples in the documentation related to C# with vscode.
103115
```shell
104116
gem install selenium-webdriver
105117
```
118+
## Supported Minimum Version
119+
120+
Make sure to use the Ruby version greater than or equal to the minimum supported version by Selenium.
121+
Ruby 2.7 is currently the minimum supported version by Selenium.
122+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/selenium-webdriver.gemspec#L32).
123+
106124
{{% /tab %}}
107125
{{% tab header="JavaScript" %}}
108126
JavaScriptへのSeleniumライブラリのインストールはnpmを使います。
109127

110128
```shell
111129
npm install selenium-webdriver
112130
```
131+
## Supported Minimum Version
132+
133+
Make sure to use the Node version greater than or equal to the minimum supported version by Selenium.
134+
Node 10.15.0 is currently the minimum supported version by Selenium.
135+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/node/selenium-webdriver/package.json#L23).
136+
113137
{{% /tab %}}
114138
{{< tab header="Kotlin" >}}
115139
Kotlinのネイティブ言語バインディングが欠落しているため、Javaバインディングを使用する必要があります。

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

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ Gradle 7.0 and above:
4141
dependencies {
4242
implementation group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '4.4.0'
4343
```
44+
## Supported Minimum Version
45+
46+
Make sure to use the Java version greater than or equal to the minimum supported version by Selenium.
47+
Java 8 is currently the minimum supported version by Selenium.
48+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/.bazelrc#L13).
4449

4550
{{% /tab %}}
4651
{{% tab header="Python" %}}
@@ -56,6 +61,13 @@ Como alternativa, você pode baixar o [arquivo de origem do PyPI](https://pypi.o
5661
```shell
5762
python setup.py install
5863
```
64+
65+
## Supported Minimum Version
66+
67+
Make sure to use the Python version greater than or equal to the minimum supported version by Selenium.
68+
Python 3.7 is currently the minimum supported version by Selenium.
69+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/py/setup.py#L41).
70+
5971
{{% /tab %}}
6072
{{% tab header="CSharp" %}}
6173
A instalação de bibliotecas Selenium para C# pode ser feita usando NuGet:
@@ -102,13 +114,24 @@ Agora você pode utilizar os exemplos na documentação relacionada para C# com
102114
gem install selenium-webdriver
103115
```
104116

117+
## Supported Minimum Version
118+
119+
Make sure to use the Ruby version greater than or equal to the minimum supported version by Selenium.
120+
Ruby 2.7 is currently the minimum supported version by Selenium.
121+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/selenium-webdriver.gemspec#L32).
122+
105123
{{% /tab %}}
106124
{{% tab header="JavaScript" %}}
107125
A instalação de bibliotecas Selenium para JavaScript pode ser feita usando npm:
108126

109127
```shell
110128
npm install selenium-webdriver
111129
```
130+
## Supported Minimum Version
131+
132+
Make sure to use the Node version greater than or equal to the minimum supported version by Selenium.
133+
Node 10.15.0 is currently the minimum supported version by Selenium.
134+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/node/selenium-webdriver/package.json#L23).
112135

113136
{{% /tab %}}
114137
{{< tab header="Kotlin" >}}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ Gradle 7.0 及以上版本:
4040
dependencies {
4141
implementation group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '4.4.0'
4242
```
43+
## Supported Minimum Version
44+
45+
Make sure to use the Java version greater than or equal to the minimum supported version by Selenium.
46+
Java 8 is currently the minimum supported version by Selenium.
47+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/.bazelrc#L13).
4348

4449
{{% /tab %}}
4550
{{% tab header="Python" %}}
@@ -55,6 +60,12 @@ pip install selenium
5560
```shell
5661
python setup.py install
5762
```
63+
## Supported Minimum Version
64+
65+
Make sure to use the Python version greater than or equal to the minimum supported version by Selenium.
66+
Python 3.7 is currently the minimum supported version by Selenium.
67+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/py/setup.py#L41).
68+
5869
{{% /tab %}}
5970
{{% tab header="CSharp" %}}
6071
可以使用 NuGet 安装 C# 的 Selenium 库:
@@ -114,13 +125,26 @@ dotnet add package Selenium.WebDriver
114125
gem install selenium-webdriver
115126
```
116127

128+
## Supported Minimum Version
129+
130+
Make sure to use the Ruby version greater than or equal to the minimum supported version by Selenium.
131+
Ruby 2.7 is currently the minimum supported version by Selenium.
132+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/selenium-webdriver.gemspec#L32).
133+
117134
{{% /tab %}}
118135
{{% tab header="JavaScript" %}}
119136
可以使用 npm 安装 JavaScript 的 Selenium 库
120137

121138
```shell
122139
npm install selenium-webdriver
123140
```
141+
142+
## Supported Minimum Version
143+
144+
Make sure to use the Node version greater than or equal to the minimum supported version by Selenium.
145+
Node 10.15.0 is currently the minimum supported version by Selenium.
146+
View the updates in the minimum version supported [here](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/node/selenium-webdriver/package.json#L23).
147+
124148
{{% /tab %}}
125149
{{< tab header="Kotlin" >}}
126150
由于缺少Kotlin的原生语言的绑定, 您不得不借助Java的生态环境, 例如Maven [Java](#java)

0 commit comments

Comments
 (0)