Theme images by Storman. Powered by Blogger.

Software Testing

[best practices][feat1]

Recent

recentposts

Popular

Comments

recentcomments

Most Recent

Random Posts

randomposts

Facebook

page/http://facebook.com/letztest

Wednesday, April 27, 2016

How to verify if a checkbox is checked using Selenium Webdriver

 


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.

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();
}
view raw gistfile1.txt hosted with ❤ by GitHub
Or using findElements code You could instead do as shown below,


List<WebElement> selectElements= driver.findElements(By.Id("input[name='checkboxes[]']"));
selectElements.get(0).click();
if( selectElements.get(2).isSelected()){
selectElements.get(2).click();
}
view raw gistfile1.txt hosted with ❤ by GitHub

What do you think on above selenium topic. Please provide your inputs and comments. You can write to me at meanurajsl@gmail.com.