Introduction to Selenium 2.0 Webdriver-SELENIUM

azharuddin
Messages : 1
Inscription : ven. févr. 16, 2018 9:05 am

Introduction to Selenium 2.0 Webdriver-SELENIUM

Message par azharuddin »

[b]Selenium WebDriver[/b]
Selenium webdriver is also known as selenium 2.0. Web driver is a tool for automating web applications. The main aim of web driver is to provide a user friendly API.

[b]Advantages over Selenium RC(1.0)[/b]
1. Selenium 2.0 has many new exciting features and improvements over Selenium 1.

2. Selenium 2.0 has more API than selenium 1.0

3. The new Feature is integration of the Web driver API.

4. By this web driver API we can overcome issues in Selenium 1.0

5. The goal is to develop an object-oriented API.

6. It is faster than Selenium RC / 1.0

7. There are more ways to identify objects ()

8. No need of starting a server.

9. Page synchronization is handled automatically.

For an in-depth understanding and practical experience, Explore Online [url=https://mindmajix.com/selenium-training]Selenium Training[/url].

[b]How to setup Web driver using eclipse and Junit / TestNG[/b]
The set up of Web driver is quite similar to Selenium RC.

[b]Prerequisites:[/b]

Jdk 1.5 or above

Eclipse 3.5 or above

Jar files: All files in selenium-java-2.X.0 folder and selenium-server-standalone-2.x.0 server file.

1. Open Eclipse.

2. File–new—Java project.

3. Enter Project Name Web Driver and click Finish.

4. A project is created.

5. Right click on JRE sys library and click buildpath—configure build path.

6. Add all external jar files (selenium-java-2.X.0 and selenium-server-standalone-2.x.0).

7. Done you are ready to write scripts using selenium webdriver.

[b]More Ways to identify Elements[/b]

[b]By ID:[/b]

driver.findElement(By.id(“123”));

[b]By Name:[/b]

driver.findElement(By.name(“username”));

[b]By Link Text:[/b]

driver.findElement(By.linklinkText(“Sign In and Register”));

[b]By Partial Link Text:[/b]

driver.findElement(By.partialLinkText(“Sign In”));

[b]By CSS:[/b]

driver.findElement(By.cssSelector(“.bUserBar.LikeRealBtn”));

[b]By XPATH:[/b]

driver.findElement(By.xpath(”//input[@class=’Page_eRadioButton’]”));

[b]By Class Name:[/b]

driver.findElement(By.className(”Page_eRadioButton”));

[b]By Tag Name:[/b]

driver.findElement(By.tagName(”option”));
Répondre

Revenir à « SoapUI Plugin »