It's quite a common scenario that we may come across where we need to verify if a particular check box is checked. If not checked we may want to mark it as checked. In this post let's see
how to check if a checkbox is selected in Selenium WebDriver with C#
First of all make the check-box as a web-element.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IWebElement checkBox1 = driver.FindElement(By.Id("checkbox id_1")); | |
IWebElement checkBox2 = driver.FindElement(By.Id("checkbox id_2")); | |
if(!checkBox1.isSelected()){ | |
checkBox1.click(); | |
} | |
//checkBox2 is selected by default | |
if(checkBox2.isSelected()){ | |
checkBox2.click(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
List<WebElement> selectElements= driver.findElements(By.Id("input[name='checkboxes[]']")); | |
selectElements.get(0).click(); | |
if( selectElements.get(2).isSelected()){ | |
selectElements.get(2).click(); | |
} |
What do you think on above selenium topic. Please provide your inputs and comments. You can write to me at meanurajsl@gmail.com.