Skip to content

Instantly share code, notes, and snippets.

@fbenevides
Created August 26, 2010 17:44
Show Gist options
  • Save fbenevides/551846 to your computer and use it in GitHub Desktop.
Save fbenevides/551846 to your computer and use it in GitHub Desktop.
package br.com.enovar.ecollaboration.domain;
import com.thoughtworks.selenium.DefaultSelenium;
import com.thoughtworks.selenium.Selenium;
public class GoogleSearch {
public static void main(String[] args) {
Selenium selenium = new DefaultSelenium("localhost", 4444, "*safari", "http://www.google.com.br/");
selenium.start();
selenium.open("/");
selenium.type("name=q", "facebook");
selenium.submit("name=f");
System.out.println(selenium.isTextPresent("www.facebook.com"));
selenium.stop();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment