Selenium Installation: Difference between revisions
Jump to navigation
Jump to search
(10 intermediate revisions by the same user not shown) | |||
Line 22: | Line 22: | ||
https://selenium-release.storage.googleapis.com/${SELENIUM_MAJOR_VERSION}.${SELENIUM_MINOR_VERSION}/selenium-server-standalone-${SELENIUM_MAJOR_VERSION}.${SELENIUM_MINOR_VERSION}.${SELENIUM_PATCH_VERSION}.jar | https://selenium-release.storage.googleapis.com/${SELENIUM_MAJOR_VERSION}.${SELENIUM_MINOR_VERSION}/selenium-server-standalone-${SELENIUM_MAJOR_VERSION}.${SELENIUM_MINOR_VERSION}.${SELENIUM_PATCH_VERSION}.jar | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==Driver Installation== | |||
===Mac=== | |||
====Chromedriver==== | |||
{{Internal|Google_Chrome_Driver#Mac|Google Chrome Driver | Installation on Mac}} | |||
====Geckodriver==== | |||
{{Internal|Mozilla_GeckoDriver#Mac|Mozilla GeckoDriver | Installation on Mac}} | |||
===Linux=== | |||
==Browser Installation== | |||
{{Internal|Chrome#Installation|Chrome | Installation}} | |||
{{Internal|Firefox#Installation|Firefox | Installation}} | |||
==Xvnc Installation== |
Latest revision as of 04:43, 2 June 2021
External
Internal
Installation with Helm
Local Component Installation
This installation mode makes sense when experimenting with different Selenium components.
Selenium Standalone Server Installation
Get selenium-server-standalone.jar
from:
https://selenium-release.storage.googleapis.com/${SELENIUM_MAJOR_VERSION}.${SELENIUM_MINOR_VERSION}/selenium-server-standalone-${SELENIUM_MAJOR_VERSION}.${SELENIUM_MINOR_VERSION}.${SELENIUM_PATCH_VERSION}.jar
export SELENIUM_MAJOR_VERSION=3
export SELENIUM_MINOR_VERSION=9
export SELENIUM_PATCH_VERSION=1
wget -O ./selenium-server-standalone-${SELENIUM_MAJOR_VERSION}.${SELENIUM_MINOR_VERSION}.${SELENIUM_PATCH_VERSION}.jar \
https://selenium-release.storage.googleapis.com/${SELENIUM_MAJOR_VERSION}.${SELENIUM_MINOR_VERSION}/selenium-server-standalone-${SELENIUM_MAJOR_VERSION}.${SELENIUM_MINOR_VERSION}.${SELENIUM_PATCH_VERSION}.jar