SlideShare a Scribd company logo
What are the differences between
Selenium WebDriver v 2.53.1 and v
3.0.1
And how do I upgrade?
By Alan Richardson
http://www.eviltester.com
http://www.seleniumsimplified.com
http://www.javafortesters.com
http://www.compendiumdev.co.uk
Summary of differences
For
Browser
2.53.1 3.0.1
HTMLUnit use v 2.21 use v 2.23
Chrome No change No Change
IE No change No Change
EDGE No change No Change
Firefox <
48
FirefoxDriver
FirefoxDriver ­ set
marionette capability to
false
Firefox >=
48
MarionetteDriver,
geckodriver.exe renamed
to wires.exe
FirefoxDriver,
geckodriver.exe on
path
Using maven, how do I upgrade?
Change the  pom.xml 
  <dependency> 
  <groupId>org.seleniumhq.selenium</groupId> 
  <artifactId>selenium‐java</artifactId> 
  <version>2.53.1</version> 
  </dependency> 
Becomes:
  <dependency> 
  <groupId>org.seleniumhq.selenium</groupId> 
  <artifactId>selenium‐java</artifactId> 
  <version>3.0.1</version> 
  </dependency> 
Q: Do I need to upgrade Any Drivers?
A: GeckoDriver and HTMLUnit Driver
How do I upgrade  HTMLUnit  Driver?
<dependency> 
    <groupId>org.seleniumhq.selenium</groupId> 
    <artifactId>htmlunit‐driver</artifactId> 
    <version>2.21</version> 
</dependency> 
Becomes
<dependency> 
    <groupId>org.seleniumhq.selenium</groupId> 
    <artifactId>htmlunit‐driver</artifactId> 
    <version>2.23</version> 
</dependency> 
How do I upgrade GeckoDriver?
Download the new  0.11.1  release
https://github.com/mozilla/geckodriver/releases
add  geckodriver.exe  to your path
in your  @Test  code use  FirefoxDriver  or  MarionetteDriver 
Can I continue to use Firefox versions
before 48
A: Yes
If the firefox binary is on your path
then
DesiredCapabilities capabilities = 
           DesiredCapabilities.firefox(); 
            
capabilities.setCapability("marionette", false); 
WebDriver driver = new FirefoxDriver(capabilities); 
I want to use Firefox version below 48
and it isn't on my path
DesiredCapabilities capabilities = 
           DesiredCapabilities.firefox(); 
            
capabilities.setCapability("marionette", false); 
String pathToFirefox ="type your path here"; 
capabilities.setCapability("firefox_binary",  pathToFirefox); 
WebDriver driver = new FirefoxDriver(capabilities); 
I get issues with GeckoDriver!
Yes, you might. It is still a work in progress.
I recommend  ChromeDriver  as your default driver.
What if I want to switch back to  2.53.1 
For version  2.53.1  with Marionette ­ I get more consistent test
results using v  0.9.0  of geckodriver.exe (renamed to wires.exe)
For version  3.0.1  with Marionette ­ v  0.11.1  seems to work
better.
Sometimes v  0.11.1  works fine with  2.53.1 
I too sometimes get issues with v  0.11.1 
My current setup of Marionette to
support both v 2.53.1 and 3.0.1 of
WebDriver
To support both v 2.53.1 and v 3.0.1 I currently have:
My Marionette folder on the path:
 C:webdriversmarionette 
version  0.11.1  of geckodriver in the folder as
 geckodriver.exe 
version  0.9.0  of geckodriver in the folder as  wires.exe 
I can then use  MarionetteDriver  and only change the version of
webdriver to run the tests.
Or use  ChromeDriver 
You don't have to change anything between v
 2.53.1  and  3.0.1  if you use ChromeDriver.
For more information
http://seleniumsimplified.com/2016/10/upgrading­to­selenium­
3­with­my­first­selenium­project/
https://www.youtube.com/watch?v=Qf9up6t1U34
http://seleniumsimplified.com/2016/10/q­should­you­use­
selenium­3­a­probably­i­have/
http://seleniumsimplified.com/2016/10/update­on­marionette­
geckodriver­v0­11­1­q­should­you­try­it­a­yes­you­should/
Alan Richardson
http://www.eviltester.com
http://www.seleniumsimplified.com
http://www.javafortesters.com
http://www.compendiumdev.co.uk
http://uk.linkedin.com/in/eviltester
https://twitter.com/eviltester
https://github.com/eviltester

More Related Content

PDF
Using Selenium 3 0
PPTX
How to Configure Selenium WebDriver (java)
PPTX
Selenium Webdriver
PDF
Selenium web driver
PPTX
An Overview of Selenium
PPS
Selenium Demo
PPT
Selenium 2: The Future of Selenium is now!
PPT
Web Test Automation with Selenium
Using Selenium 3 0
How to Configure Selenium WebDriver (java)
Selenium Webdriver
Selenium web driver
An Overview of Selenium
Selenium Demo
Selenium 2: The Future of Selenium is now!
Web Test Automation with Selenium

What's hot (20)

PPTX
Selenium with java
PDF
Selenium WebDriver: Tips and Tricks
PPTX
Get Started With Selenium 3 and Selenium 3 Grid
PPT
selenium training | selenium course | selenium video tutorial | selenium for ...
PDF
Web application testing with Selenium
PPSX
Selenium WebDriver with Java
PPTX
Selenium WebDriver training
PDF
Automatic Functional Testing with Selenium and SauceLabs
PPTX
Protractor Testing Automation Tool Framework / Jasmine Reporters
KEY
Getting started with Selenium 2
PPTX
Selenium drivers
PPT
Understanding Selenium/RC, Webdriver Architecture and developing the page obj...
PPTX
How to configure Appium with android IDE & eclipse
PPTX
Selenium - Introduction
KEY
JavaScript Testing VIA Selenium
PDF
Selenium
ODP
Automated UI testing. Selenium. DrupalCamp Kyiv 2011
PDF
Session on Selenium Powertools by Unmesh Gundecha
PPT
Automated Web Testing Using Selenium
PDF
Selenium Maven With Eclipse | Edureka
Selenium with java
Selenium WebDriver: Tips and Tricks
Get Started With Selenium 3 and Selenium 3 Grid
selenium training | selenium course | selenium video tutorial | selenium for ...
Web application testing with Selenium
Selenium WebDriver with Java
Selenium WebDriver training
Automatic Functional Testing with Selenium and SauceLabs
Protractor Testing Automation Tool Framework / Jasmine Reporters
Getting started with Selenium 2
Selenium drivers
Understanding Selenium/RC, Webdriver Architecture and developing the page obj...
How to configure Appium with android IDE & eclipse
Selenium - Introduction
JavaScript Testing VIA Selenium
Selenium
Automated UI testing. Selenium. DrupalCamp Kyiv 2011
Session on Selenium Powertools by Unmesh Gundecha
Automated Web Testing Using Selenium
Selenium Maven With Eclipse | Edureka
Ad

Viewers also liked (16)

PDF
Webinar: Selenium WebDriver - Automation Uncomplicated
PDF
Node.js and Selenium Webdriver, a journey from the Java side
PPTX
Automation Testing by Selenium Web Driver
PDF
Automation Testing using Selenium
PPT
Selenium ppt
PDF
CP-SAT - Certified Professional Selenium Automation Testing
PDF
Selenium
PDF
Test Bash Netherlands Alan Richardson "How to misuse 'Automation' for testing...
PDF
Test Automation Day 2015 Keynote Alan Richardson - Practical Lessons Learned ...
PDF
Agile and Scrum for Video Game Development
PDF
Technical Mobile Testing - Risks, Issues and Experiences (EuroSTAR Mobile Dee...
PDF
TestWorksConf 2015 Keynote Test Automation Conference Amsterdam
PDF
Checklist How to Install Firefox GeckoDriver and Chromedriver on Windows and ...
PDF
Web UI test automation instruments
PDF
Joint slides Isabel Evans Alan Richardson Feb UKStar 2017
PDF
Lessons Learned When Automating
Webinar: Selenium WebDriver - Automation Uncomplicated
Node.js and Selenium Webdriver, a journey from the Java side
Automation Testing by Selenium Web Driver
Automation Testing using Selenium
Selenium ppt
CP-SAT - Certified Professional Selenium Automation Testing
Selenium
Test Bash Netherlands Alan Richardson "How to misuse 'Automation' for testing...
Test Automation Day 2015 Keynote Alan Richardson - Practical Lessons Learned ...
Agile and Scrum for Video Game Development
Technical Mobile Testing - Risks, Issues and Experiences (EuroSTAR Mobile Dee...
TestWorksConf 2015 Keynote Test Automation Conference Amsterdam
Checklist How to Install Firefox GeckoDriver and Chromedriver on Windows and ...
Web UI test automation instruments
Joint slides Isabel Evans Alan Richardson Feb UKStar 2017
Lessons Learned When Automating
Ad

Similar to Upgrading to Selenium WebDriver version 3 (20)

PPTX
Selenium webdriver version 4 features by vikas thange xpanxion automation te...
ZIP
From IDE to Selenium 2
PDF
Selenium for Tester.pdf
PPTX
Step by step - Selenium 3 web-driver - From Scratch
PPT
Selenium Java for Beginners by Sujit Pathak
DOCX
Selenium coursecontent linkedin
PPTX
Selenium-3-vs-Selenium-4-Advancing-Web-Automation.pptx
PPTX
Session 05 - Introduction to WebDriver - Part 02
PPT
Selenium By Pravin Mishra
DOCX
Step 8_7_ 6_5_4_3_2_ 1 in one_Tutorial for Begineer on Selenium Web Driver-Te...
PDF
What's new in selenium 4
PDF
Boston selenium meetup: Selenium 2
PPTX
Module 01 - WebDriver Basics
PPTX
A Deep Dive into the W3C WebDriver Specification
PPTX
Selenium-3-vs-Selenium-4-A-Deep-Dive-into-Web-Automation-Evolution (1).pptx
PPTX
Selenium web driver
PPTX
SKILLWISE_SELENIUM
PDF
Selenium Full Material( apprendre Selenium).pdf
DOCX
Selenium WebDriver FAQ's
Selenium webdriver version 4 features by vikas thange xpanxion automation te...
From IDE to Selenium 2
Selenium for Tester.pdf
Step by step - Selenium 3 web-driver - From Scratch
Selenium Java for Beginners by Sujit Pathak
Selenium coursecontent linkedin
Selenium-3-vs-Selenium-4-Advancing-Web-Automation.pptx
Session 05 - Introduction to WebDriver - Part 02
Selenium By Pravin Mishra
Step 8_7_ 6_5_4_3_2_ 1 in one_Tutorial for Begineer on Selenium Web Driver-Te...
What's new in selenium 4
Boston selenium meetup: Selenium 2
Module 01 - WebDriver Basics
A Deep Dive into the W3C WebDriver Specification
Selenium-3-vs-Selenium-4-A-Deep-Dive-into-Web-Automation-Evolution (1).pptx
Selenium web driver
SKILLWISE_SELENIUM
Selenium Full Material( apprendre Selenium).pdf
Selenium WebDriver FAQ's

More from Alan Richardson (20)

PDF
Add More Security To Your Testing and Automating - Saucecon 2021
PDF
Automating to Augment Testing
PDF
Open source tools - Test Management Summit - 2009
PDF
Automating Tactically vs Strategically SauceCon 2020
PDF
The Future of Testing Webinar
PDF
Devfest 2019-slides
PDF
Secrets and Mysteries of Automated Execution Keynote slides
PDF
Automating Pragmatically - Testival 20190604
PDF
Joy of Coding Conference 2019 slides - Alan Richardson
PDF
Programming katas for Software Testers - CounterStrings
PDF
Technology Based Testing
PDF
About Consultant Alan Richardson Compendium Developments Evil Tester
PDF
Shift left-testing
PDF
Automating and Testing a REST API
PDF
Technical and Testing Challenges: Using the "Protect The Square" Game
PDF
TDD - Test Driven Development - Java JUnit FizzBuzz
PDF
If you want to automate, you learn to code
PDF
How To Test With Agility
PDF
Your Automated Execution Does Not Have to be Flaky
PDF
What is Testability vs Automatability? How to improve your Software Testing.
Add More Security To Your Testing and Automating - Saucecon 2021
Automating to Augment Testing
Open source tools - Test Management Summit - 2009
Automating Tactically vs Strategically SauceCon 2020
The Future of Testing Webinar
Devfest 2019-slides
Secrets and Mysteries of Automated Execution Keynote slides
Automating Pragmatically - Testival 20190604
Joy of Coding Conference 2019 slides - Alan Richardson
Programming katas for Software Testers - CounterStrings
Technology Based Testing
About Consultant Alan Richardson Compendium Developments Evil Tester
Shift left-testing
Automating and Testing a REST API
Technical and Testing Challenges: Using the "Protect The Square" Game
TDD - Test Driven Development - Java JUnit FizzBuzz
If you want to automate, you learn to code
How To Test With Agility
Your Automated Execution Does Not Have to be Flaky
What is Testability vs Automatability? How to improve your Software Testing.

Recently uploaded (20)

PDF
Softaken Excel to vCard Converter Software.pdf
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PPTX
history of c programming in notes for students .pptx
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
Reimagine Home Health with the Power of Agentic AI​
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
Digital Systems & Binary Numbers (comprehensive )
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
Understanding Forklifts - TECH EHS Solution
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
Softaken Excel to vCard Converter Software.pdf
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
history of c programming in notes for students .pptx
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
2025 Textile ERP Trends: SAP, Odoo & Oracle
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Odoo Companies in India – Driving Business Transformation.pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Reimagine Home Health with the Power of Agentic AI​
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Digital Systems & Binary Numbers (comprehensive )
CHAPTER 2 - PM Management and IT Context
Understanding Forklifts - TECH EHS Solution
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PTS Company Brochure 2025 (1).pdf.......
wealthsignaloriginal-com-DS-text-... (1).pdf
Design an Analysis of Algorithms I-SECS-1021-03
How to Migrate SBCGlobal Email to Yahoo Easily
Which alternative to Crystal Reports is best for small or large businesses.pdf
Navsoft: AI-Powered Business Solutions & Custom Software Development

Upgrading to Selenium WebDriver version 3