Tag «learn selenium»

Selenium Beginner 12 – What are Headless Browsers

Notes: Today we will learn: 1. What are Headless Browsers 2. Why should we use Headless Browsers 3. When should we NOT use Headless Browsers 4. Examples of Headless Browsers Helpful TIPS Html Unit browser PhantomJS TrifleJS SlimmerJS ZombieJS References: Headless Browsers list – https://gist.github.com/evandrix/3694955 Xvfb wikipedia – https://en.wikipedia.org/wiki/Xvfb Xvfb Jenkins Plugin – https://wiki.jenkins-ci.org/display/JENKINS/Xvfb+Plugin Stack …

Selenium Beginner 11 – How To Create JAR File

Notes: Today we will learn: 1. How to create a runnable JAR 2. How to run the test from command line STEP 1 : Create a runnable jar from eclipse project STEP 2 : Run the jar file from command line java -jar name.jar References: Java Beginner Tutorial 7 – JAR (Java Archive) basics –https://www.youtube.com/watch?v=QB19Wqimkq4&index=7&t=422s&list=PLhW3qG5bs-L_qj1L5hnHvJYeFpQ_g4UuU …

Selenium Beginner 8 – How to run test on Chrome Browser

Notes: Today we will learn: Step 1 – How to download ChromeDriver Step 2 – How to set ChromeDriver in System Properties System.setProperty(“webdriver.chrome.driver”, “location of chrome driver executable”); WebDriver driver = new ChromeDriver(); Step 3 – Run test in Chrome Browser helpful tips | interview section References : Selenium HQ – http://www.seleniumhq.org/ ChromeDriver exe release …

Selenium Beginner 6 – How To Use Selenium 3 – Gecko Driver

Notes: Today we will learn: 1. How to add Selenium 3 Jars 2. How to add gecko driver 3. Run test with Selenium 3 helpful tips interview section References – Webdriver interface documentation – http://seleniumhq.github.io/selenium/docs/api/java/ Selenium HQ – http://www.seleniumhq.org/ Gecko Driver Download – https://github.com/mozilla/geckodriver/releases Selenium YouTube Playlist Send me your comments and feedback  

Selenium Beginner 2 – History of Selenium

Notes: Today we will learn : 1. Birth of: Selenium Core Selenium RC WebDriver Selenium Grid Selenium IDE 2. How did Selenium 1, 2 and 3 came into existence 3. Selenium release history 4. Contributors and creators of Selenium 5. Why is Selenium named so ? 6. Useful tips Selenium 2.0 announcement : https://seleniumhq.wordpress.com/2011/07/08/selenium-2-0/ Creator …