Book Image

Learning Selenium Testing Tools - Third Edition

Book Image

Learning Selenium Testing Tools - Third Edition

Overview of this book

Table of Contents (22 chapters)
Learning Selenium Testing Tools Third Edition
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Chapter 13


  1. Answer: Create a new instance of the browser you want to use using Selenium WebDriver. Then pass this into the WebDriverBackedSelenium with the URL. This you would like to test. It will look like this:

    @Before
      public void setup(){
        driver = new FirefoxDriver();
        selenium = new WebDriverBackedSelenium(driver, http://book.theautomatedtester.co.uk