Installing Selenium Builder for Windows 10 and Ubuntu 14.04

The biggest issue was getting a version of Firefox that works, the workaround was to install the Firefox ESR Edition

Windows 10 Installation

Install Java JDK - jdk-8u111-windows-x64.exe

Install Python - python-2.7.12.msi
Choose advance configuration to add Python to class path

Install Firefox ESR Edition - "Firefox Setup 45.5.0esr.exe
https://www.mozilla.org/en-US/firefox/organizations/all/

Update your path variable to add this:
"C:\Program Files\Mozilla Firefox\"

Launch Firefox and install the Selenium Builder Plugin
https://addons.mozilla.org/en-us/firefox/addon/selenium-builder/

Download Selenium Jar File
http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.1.jar

Launch the Jar for command line
java -jar selenium-server-standalone-2.53.1.jar

You are now ready to record and playback via Firefox

---

Ubuntu 14.04 Installation

Install Java 8

$ sudo apt-get install python-software-properties
$ sudo add-apt-repository ppa:webupd8team/java
$ sudo apt-get update
$ sudo apt-get install oracle-java8-installer

Remove current version of Firefox
$ sudo apt-get remove firefox

Download 64-bit version of Firefox
https://www.mozilla.org/en-US/firefox/organizations/all/

Extract Firefox
sudo tar -xvjf firefox-45.5.0esr.tar.bz2 -C /opt

Create Firefox ESR
sudo ln -s /opt/firefox/firefox /usr/bin/firefox

Create an icon
$ sudo apt-get install gnome-panel
$ sudo gnome-desktop-item-edit . --create-new

Updating
$ sudo apt-get install gksu
$ gksudo firefox

Daily Verification with Selenium

Instructions: Daily Verification HAL Booking only.pdf

Resources: daily-automation.zip

Maurice, here are the files you need to run the Daily Verification test for HAL to get your daily booking.  If the OLCI or Secondary fails, don’t worry about it.  You only need the booking number, right?  I will fix anything else that goes wrong when I get back.

If you run into trouble, you can consult with Manuel, as he has trained a little bit on this.  I have attached the document he put together for himself for running Parts 1 and 2.

You will need to install Firefox add-ons Selenium IDE, File Logging (Selenium IDE) and ScreenShot on Error (Selenium IDE).  They can all be found by clicking on Add-ons in the Firefox hamburger menu.  You may have to search for them.

Selenium for browser based playback

Selenium automates browsers. That's it. What you do with that power is entirely up to you. Primarily it is for automating web applications for testing purposes, but is certainly not limited to just that. Boring web-based administration tasks can (and should!) also be automated as well.

Selenium has the support of some of the largest browser vendors who have taken (or are taking) steps to make Selenium a native part of their browser. It is also the core technology in countless other browser automation tools, APIs and frameworks.

Refer: http://seleniumhq.org/