Selenium Installation: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
(18 intermediate revisions by the same user not shown)
Line 1: Line 1:
=External=
* https://www.selenium.dev/documentation/en/selenium_installation/
=Internal=
=Internal=


Line 4: Line 6:


=Installation with Helm=
=Installation with Helm=
{{External|https://github.com/helm/charts/tree/master/stable/selenium}}
=Local Component Installation=
This installation mode makes sense when experimenting with different Selenium components.
==Selenium Standalone Server Installation==
Get <code>selenium-server-standalone.jar</code> from:
<syntaxhighlight lang='text'>
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 lang='bash'>
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
</syntaxhighlight>
==Driver Installation==
===Mac===
====Chromedriver====
{{Internal|Google_Chrome_Driver#Mac|Google Chrome Driver &#124; Installation on Mac}}
====Geckodriver====
{{Internal|Mozilla_GeckoDriver#Mac|Mozilla GeckoDriver &#124; Installation on Mac}}


{{External|https://github.com/helm/charts/tree/master/stable/selenium}}
===Linux===


=a=
==Browser Installation==
=b=
{{Internal|Chrome#Installation|Chrome &#124; Installation}}
{{Internal|Firefox#Installation|Firefox &#124; Installation}}
==Xvnc Installation==

Latest revision as of 04:43, 2 June 2021

External

Internal

Installation with Helm

https://github.com/helm/charts/tree/master/stable/selenium

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

Driver Installation

Mac

Chromedriver

Google Chrome Driver | Installation on Mac

Geckodriver

Mozilla GeckoDriver | Installation on Mac

Linux

Browser Installation

Chrome | Installation
Firefox | Installation

Xvnc Installation