Below is the script for on/off the checkbox using webdriver:
package mypackage; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; public class myclass { public static void main(String[] args) { WebDriver driver = new FirefoxDriver(); String baseUrl = "http://www.facebook.com"; driver.get(baseUrl); WebElement chkFbPersist = driver.findElement(By.id("persist_box")); for(int i=0; i<2; i++) { chkFbPersist.click(); System.out.println(chkFbPersist.isSelected()); } driver.quit(); } }
Screenshot below:
Webner Solutions is a Software Development company focused on developing Insurance Agency Management Systems, Learning Management Systems and Salesforce apps. Contact us at dev@webners.com for your Insurance, eLearning and Salesforce applications.