Stqa Practicalno 8
Stqa Practicalno 8
email.clear();
password.clear();
System.out.println("Text Field Cleared");
driver.findElement(By.id("email")).sendKeys("[email protected]");
driver.findElement(By.id("passwd")).sendKeys("gongonegoner");
driver.findElement(By.id("SubmitLogin")).submit();
System.out.println("login done with Submit fucntion");
driver.get("http://demo.guru99.com/test/radio.html");
WebElement rad1 = driver.findElement(By.id("vfb-7-1"));
rad1.click();
System.out.println("Radio Button 1 Selected");
WebElement rad2 = driver.findElement(By.id("vfb-7-2"));
rad1.click();
System.out.println("Radio Button 2 Selected");
if (check.isSelected()) {
System.out.println("CheckBox is toggled on.");
}
else {
System.out.println("CheckBox is toggled off");
}
driver.get("http://demo.guru99.com/test/facebook.html");
WebElement persist = driver.findElement(By.id("persist_box"));
for(int i=0;i<2;i++) {
persist.click();
System.out.println("Facebook Persists CheckBox Status is - "+persist.isSelected());
}
driver.close();
}