- thetoptechie
- Posts : 1
Join date : 2011-09-26
How to implement Webdriver
Mon Sep 26, 2011 1:43 pm
Hi all,
I want to automate the testing process of my project.
I am new in automation.
I know the basics of Webdriver but I am not getting the idea how to implement it. I would like to implement it in Java.
I am confused whether i should create class for each form or not.
Can anybody tell me low level implementation of Webdriver.
I want to automate the testing process of my project.
I am new in automation.
I know the basics of Webdriver but I am not getting the idea how to implement it. I would like to implement it in Java.
I am confused whether i should create class for each form or not.
Can anybody tell me low level implementation of Webdriver.
- ashish_techieAmateur
- Posts : 73
Join date : 2011-08-09
Re: How to implement Webdriver
Thu Sep 29, 2011 8:07 pm
1) You need to download webdriver jars from selenium site and confiure them in eclipse.
2) After that you should write a basic code like this
WebDriver driver= new FirefoxDriver(); --> OPens firefox browser
driver.get("http://gmail.com"); --> Takes browser to gmail.com
driver.quit(); --> Closes browser
You can also refer javadocs/documentation of webriver on selenium site.
Regards
Ashish
For selenium training refer:
http://qtpselenium.com/samplevideos/selenium/seleniumvideos.php
2) After that you should write a basic code like this
WebDriver driver= new FirefoxDriver(); --> OPens firefox browser
driver.get("http://gmail.com"); --> Takes browser to gmail.com
driver.quit(); --> Closes browser
You can also refer javadocs/documentation of webriver on selenium site.
Regards
Ashish
For selenium training refer:
http://qtpselenium.com/samplevideos/selenium/seleniumvideos.php
Permissions in this forum:
You cannot reply to topics in this forum