Skip to content

Instantly share code, notes, and snippets.

@Lobstrosity
Created August 5, 2010 18:36
Show Gist options
  • Save Lobstrosity/510167 to your computer and use it in GitHub Desktop.
Save Lobstrosity/510167 to your computer and use it in GitHub Desktop.
using (Browser browser = new IE("http://www.google.com"))
{
browser.TextField(Find.ByName("q")).TypeText("watin");
browser.Button(Find.ByName("btnG")).Click();
Assert.IsTrue(browser.ContainsText("WatiN Home"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment