Skip to main content

Script to open the browser using Selenium Web Driver

To open the Firefox browser by using selenium Web driver, we need to follow following procedure

Step 1: First You need to create a Java Project

Open the eclipse > Click on File  > Click on New > Click on Project
Selenium Web Driver, Automation Testing, Open Browser Script

Then select Java Project and then click on next Button
Selenium Web Driver, Automation Testing, Open Browser Script
Then right the project name and click on Next button then click on Finish Button
Selenium Web Driver, Automation Testing, Open Browser Script
Step 2: Now You need to create the package
for create the Package, First click on the newly created Project
Then Right Click on src folder > Click on New > Click on Package
Selenium Web Driver, Automation Testing, Open Browser Script, Select Package

Then Type the package name and click on Finish Button
Selenium Web Driver, Automation Testing, Open Browser Script, Package Name
Step 3: Now We need to create Class
Right Click on newly created package > click on New -> click on Class
Selenium Web Driver, Automation Testing, Open Browser Script, Create Class


Now Type the name of class and click on Finish button
Selenium Web Driver, Automation Testing, Open Browser Script, Class Name
We found following code in our page

                         package testPackage;
                         public class TestClass{
                         }

Step 4: Now in class we need to define the main method because every java project need main method to execute the code.

                           public static void main(String[] args)

Step 5: Now we will write script to open the Firefox browser

                      WebDriver driver = new FirefoxDriver();

here WebDriver is the Interface
driver is the reference Variable Name
new is the keyword
FirefoxDriver() is the constructor of the Firefox driver class

Let me explain the code.
instance of the FirefoxDriver class has been created and the address is stored in the interface WebDriver type driver object.

This will open a Firefox brower in your system.
To put any URL in the browser you can write following line

    driver.get("URL");

So to open a browser and run aURL

    package testPackage;
   
    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.firefox.FirefoxDriver;
   
    public class TestClass{
        public static void main(String[] args) {
   
        WebDriver driver = new FirefoxDriver();
        driver.get("https://www.google.co.in");
        }
    }




Comments

Popular posts from this blog

How to Put Load on a Script in JMeter

In last post we discussed about how to record a test script and Firefox settings to run the script. In this post we will discuss about how the Thread Group will work, how can we put n number of users to perform load testing, In JMeter by using Thread Group, we can create virtual users. Thread Group is a set of thread which work in same scenario. There are multiple thread group are available which is use to configure how the virtual users interest with the application, How much load maintain and till how much time load maintain.

How to take the Screenshot in Selenium WebDriver?

If we want to take the screenshot then we have to convert our WebDriver object into the screenshot object. we need to change the behavior of the drive to take the screenshot . We can do it by casting

JMeter Overview Description

In this article we will go through the multiple section of JMeter and describe the tool information. we will discuss about every component of JMeter tool in this Article so that you can hands on while working on script on JMeter about these components.