Start working on Selenium RC
com.thoughtworks.selenium.DefaultSelenium;
public
class Flight {
public static DefaultSelenium selenium = new DefaultSelenium("localhost",4444,"*firefox","http://");
public static String openUrl() throws Exception
{
selenium.start();
selenium.setTimeout("30000");
selenium.windowMaximize();
selenium.open("http://www.harleysvillegroup.com/");
selenium.waitForPageToLoad("10000");
//selenium.captureScreenshot("C:\\skhan.png");
selenium.click("name=file_1");
selenium.waitForPageToLoad("10000");
Thread.sleep(5000);
//selenium.type("name=Wizard1$ctl07$HolderInfoControl1$txtPolicy", "BOP00000012345");
//selenium.type("name=Wizard1$ctl07$HolderInfoControl1$txtName", "Skhan");
return "pass";
}
public static void main(String[] args) throws Exception {
openUrl();
}
}
No comments:
Post a Comment