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 f6fd7d406a9e..4b9402497dda 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 @@ -14,41 +14,25 @@ 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. ### Java -Installation of Selenium libraries for Java can be done using Maven. -Add the _selenium-java_ dependency in your project pom.xml: +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) + +For Maven, add the _selenium-java_ dependency in your project `pom.xml` file: ```xml org.seleniumhq.selenium selenium-java - 4.X + 4.0.0 ``` -The _selenium-java_ dependency supports running your automation -project with all Selenium supported browsers. If you want to run tests -only in a specific browser, you can add the dependency for that browser -in your _pom.xml_ file. -For example, you should add following dependency in your _pom.xml_ -file to run your tests only in Firefox: - -```xml - - org.seleniumhq.selenium - selenium-firefox-driver - 4.X - -``` - -In a similar manner, if you want to run tests only in Chrome, -you should add the following dependency: +For Gradle, add the _selenium-java_ dependency in your project `build.gradle` file: -```xml - - org.seleniumhq.selenium - selenium-chrome-driver - 4.X - +```text +dependencies { + compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '4.0.0' ``` ### Python @@ -82,6 +66,12 @@ Installation of Selenium libraries for Ruby can be done using gem: gem install selenium-webdriver ``` +Or add it to your `Gemfile`: + +```rb +gem 'selenium-webdriver', '~> 4.0' +``` + ### JavaScript Installation of Selenium libraries for JavaScript can be done using npm: 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 97066a327943..57b87573ec02 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 @@ -2,6 +2,7 @@ title: "Seleniumライブラリのインストール" linkTitle: "Seleniumライブラリのインストール" weight: 1 +needsTranslation: true description: > Setting up the Selenium library for your favourite programming language. aliases: [ @@ -10,16 +11,6 @@ aliases: [ ] --- -{{% pageinfo color="warning" %}} -

- - Page being translated from - English to Japanese. Do you speak Japanese? Help us to translate - it by sending us pull requests! -

-{{% /pageinfo %}} - - 最初にあなたの自動化プロジェクトにSeleniumのバインディングをインストールする必要があります。 インストールの方法は選択した言語によって異なります。 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 3e2a0ae095b8..30c13054fb16 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 @@ -2,6 +2,7 @@ title: "Instalando bibliotecas do Selenium" linkTitle: "Instalando bibliotecas do Selenium" weight: 1 +needsTranslation: true description: > Setting up the Selenium library for your favourite programming language. aliases: [ @@ -10,15 +11,6 @@ aliases: [ ] --- -{{% pageinfo color="warning" %}} -

- - Page being translated from - English to Portuguese. Do you speak Portuguese? Help us to translate - it by sending us pull requests! -

-{{% /pageinfo %}} - 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. diff --git a/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.zh-cn.md b/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.zh-cn.md index 03a5559218cc..6745bf9b5221 100644 --- a/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.zh-cn.md +++ b/website_and_docs/content/documentation/webdriver/getting_started/install_selenium_library.zh-cn.md @@ -2,6 +2,7 @@ title: "安装 Selenium 库" linkTitle: "安装 Selenium 库" weight: 1 +needsTranslation: true description: > 为您喜爱的编程语言设置Selenium库. aliases: [