About Me

Page views

Powered by Blogger.

Followers

Thursday, 30 April 2015

All Links can be accessed using an exact or partial match of their link text.  The scenarios where multiple matches would exist, and would explain how WebDriver would deal with all Links . The common procedures in web  testing is to test if all the links present within the page are...
Click on Facebook's "Keep me logged in" check box twice and then output the result as TRUE when it is toggled on, and FALSE if it is toggled off 1. First click check box was toggled on . 2. Second click check box was toggled off. package dayOne; import org.openqa.selenium.By; import...
package dayOne; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; public class JobServe { public static void main(String[] args) {  WebDriver driver = new FirefoxDriver();  driver.get("http://www.jobserve.com/in/en/Job-Search/"); ...
WebDriver gives us “Find Element” and “Find Elements” method to locate elements on the web page. By Name WebElement element = driver.findElement(By.name("ss")); By ID WebElement element = driver.findElement(By.id("Username")); By Class Name WebElement element = driver.findElement(By.className("")); By...

Wednesday, 29 April 2015

To Command driver.navigate().to("https://in.yahoo.com/"); Purpose : This command is use to navigate on specific page or URL in between the  test Command : driver.navigate().to(URL); Parameters : url – The URL to load. It is best to use a fully...
Get Command Example : driver.get("http://www.bbc.com"); Purpose: This command is use to open a new web page in the current browser. Command: driver.get("URL"); Get Title Command Example : driver.getTitle(); Purpose: This command is use to get the title of...
package dayOne; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; public class TestTwo { public static void main(String[] args) { WebDriver driver = new FirefoxDriver(); String baseUrl = "http://enterprise.demo.orangehrmlive.com/"; StringBuffer...

Popular Posts

Copyright © 2025 Learn Selenium Yourself | Powered by Blogger
Design by Duan Zhiyan | Blogger Theme by NewBloggerThemes.com