Created
July 20, 2011 19:18
-
-
Save anonymous/1095693 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.openqa.selenium.By; | |
import org.openqa.selenium.NoSuchElementException; | |
import org.openqa.selenium.WebDriver; | |
import org.openqa.selenium.firefox.FirefoxDriver; | |
public class FFLinux { | |
public static void main(String[] args) { | |
WebDriver ff = new FirefoxDriver(); | |
ff.get("http://www.domain.com"); | |
ff.findElement(By.linkText("Login")).click(); | |
ff.findElement(By.xpath("//div[@id = 'idSignIn']")).click(); | |
ff.findElement(By.id("logonId")).sendKeys("user"); | |
ff.findElement(By.id("logonPassword")).sendKeys("pass"); | |
ff.findElement(By.id("Sign_In_and_Continue")).click(); | |
try { | |
ff.findElement(By.id("search_field")); | |
System.out.println("Search field found"); | |
} | |
catch (NoSuchElementException e) { | |
System.out.println("Search field not found"); | |
ff.quit(); | |
} | |
finally { | |
ff.quit(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment