diff --git a/website_and_docs/assets/scss/_tabpane-md.scss b/website_and_docs/assets/scss/_tabpane-md.scss
new file mode 100644
index 000000000000..e8d06fa3394f
--- /dev/null
+++ b/website_and_docs/assets/scss/_tabpane-md.scss
@@ -0,0 +1,8 @@
+.tabpane-md {
+ border-style: outset;
+ border-width: thin;
+}
+
+.tabpane-md .tab-pane {
+ padding: 10px;
+}
diff --git a/website_and_docs/assets/scss/main.scss b/website_and_docs/assets/scss/main.scss
index da31f8c6a52a..9ef0d47bb04e 100644
--- a/website_and_docs/assets/scss/main.scss
+++ b/website_and_docs/assets/scss/main.scss
@@ -7,4 +7,5 @@
@import "images";
@import "links";
@import "logo";
-@import "screen";
\ No newline at end of file
+@import "screen";
+@import "tabpane-md";
diff --git a/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.en.md b/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.en.md
index 4b9402497dda..8755d72a572b 100644
--- a/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.en.md
+++ b/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.en.md
@@ -10,10 +10,10 @@ aliases: [
]
---
-First you need to install the Selenium bindings for your automation project.
-The installation process for libraries depends on the language you choose to use.
+The installation process for libraries depends on the language you choose to use:
-### Java
+{{< tabpane-md paneID="2" tabCount="6" headerTab1="Java" headerTab2="Python" headerTab3="CSharp" headerTab4="Ruby" headerTab5="JavaScript" headerTab6="Kotlin" >}}
+{{< tab-md ID="1" >}}
Installation of Selenium libraries for Java is accomplished using a build tool.
You can find the latest version on [Selenium Downloads](/downloads/) and see all available versions on
[Maven Repository](https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java)
@@ -28,14 +28,14 @@ For Maven, add the _selenium-java_ dependency in your project `pom.xml` file:
```
-For Gradle, add the _selenium-java_ dependency in your project `build.gradle` file:
+For Gradle, add the _selenium-java_ dependency in your project `build.gradle` file:
```text
dependencies {
compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '4.0.0'
```
-
-### Python
+{{< /tab-md >}}
+{{< tab-md ID="2" >}}
Installation of Selenium libraries for Python can be done using pip:
```shell
@@ -49,7 +49,8 @@ Alternatively you can download the [PyPI source archive](https://pypi.org/projec
python setup.py install
```
-### C#
+{{< /tab-md >}}
+{{< tab-md ID="3" >}}
Installation of Selenium libraries for C# can be done using NuGet:
```shell
@@ -58,8 +59,8 @@ Install-Package Selenium.WebDriver
# or using .Net CLI
dotnet add package Selenium.WebDriver
```
-
-### Ruby
+{{< /tab-md >}}
+{{< tab-md ID="4" >}}
Installation of Selenium libraries for Ruby can be done using gem:
```shell
@@ -72,13 +73,17 @@ Or add it to your `Gemfile`:
gem 'selenium-webdriver', '~> 4.0'
```
-### JavaScript
+{{< /tab-md >}}
+{{< tab-md ID="5" >}}
Installation of Selenium libraries for JavaScript can be done using npm:
```shell
npm install selenium-webdriver
```
-### Kotlin
-Due to missing native language bindings for Kotlin, you have to use the
+{{< /tab-md >}}
+{{< tab-md ID="6" >}}
+Due to missing native language bindings for Kotlin, you have to use the
Java Bindings, e.g. with maven [Java](#java)
+{{< /tab-md >}}
+{{< /tabpane-md >}}
diff --git a/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.ja.md b/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.ja.md
index 57b87573ec02..aa353a69f5db 100644
--- a/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.ja.md
+++ b/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.ja.md
@@ -14,7 +14,8 @@ aliases: [
最初にあなたの自動化プロジェクトにSeleniumのバインディングをインストールする必要があります。
インストールの方法は選択した言語によって異なります。
-### Java
+{{< tabpane-md paneID="2" tabCount="6" headerTab1="Java" headerTab2="Python" headerTab3="CSharp" headerTab4="Ruby" headerTab5="JavaScript" headerTab6="Kotlin" >}}
+{{< tab-md ID="1" >}}
JavaへのSeleniumライブラリのインストールはMavenを使います。
プロジェクトのpom.xmlに _selenium-java_ の依存関係を追加してください。
@@ -48,7 +49,8 @@ _selenium-java_ 依存関係は、Seleniumがサポートする全てのブラ
```
-### Python
+{{< /tab-md >}}
+{{< tab-md ID="2" >}}
PythonへのSeleniumライブラリのインストールはpipを使います。
```shell
@@ -62,7 +64,8 @@ pip install selenium
python setup.py install
```
-### C#
+{{< /tab-md >}}
+{{< tab-md ID="3" >}}
C#へのSeleniumライブラリのインストールはNuGetを使います。
```shell
@@ -72,21 +75,25 @@ Install-Package Selenium.WebDriver
dotnet add package Selenium.WebDriver
```
-### Ruby
+{{< /tab-md >}}
+{{< tab-md ID="4" >}}
RubyへのSeleniumライブラリのインストールはgemを使います。
```shell
gem install selenium-webdriver
```
-## _JavaScript_
+{{< /tab-md >}}
+{{< tab-md ID="5" >}}
JavaScriptへのSeleniumライブラリのインストールはnpmを使います。
```shell
npm install selenium-webdriver
```
-### Kotlin
-Due to missing native language bindings for Kotlin, you have to use the
+{{< /tab-md >}}
+{{< tab-md ID="6" >}}
+Due to missing native language bindings for Kotlin, you have to use the
Java Bindings, e.g. with maven [Java](#java)
+{{< /tabpane-md >}}
diff --git a/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.pt-br.md b/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.pt-br.md
index 30c13054fb16..da0e5023c4f2 100644
--- a/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.pt-br.md
+++ b/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.pt-br.md
@@ -14,7 +14,8 @@ aliases: [
Primeiro você precisa instalar as ligações Selenium para seu projeto de automação.
O processo de instalação de bibliotecas depende da linguagem que você escolher usar.
-### Java
+{{< tabpane-md paneID="2" tabCount="6" headerTab1="Java" headerTab2="Python" headerTab3="CSharp" headerTab4="Ruby" headerTab5="JavaScript" headerTab6="Kotlin" >}}
+{{< tab-md ID="1" >}}
A instalação de bibliotecas Selenium para Java pode ser feita usando Maven.
Adicione a dependência selenium-java em seu pom.xml:
@@ -26,7 +27,7 @@ Adicione a dependência selenium-java em seu pom.xml:
```
-A dependência _selenium-java_ suporta a execução de sua automação com todos os navegadores
+A dependência _selenium-java_ suporta a execução de sua automação com todos os navegadores
com suporte Selenium. Se você quiser fazer testes
apenas em um navegador específico, você pode adicionar a dependência para esse navegador
em seu arquivo _pom.xml_.
@@ -40,7 +41,7 @@ arquivo para executar seus testes apenas no Firefox: