- seli
- Posts : 7
Join date : 2012-05-11
How to check or uncheck the checkbox with IE8
Thu Jun 14, 2012 9:04 pm
Hi all,
I have an issue when checking a checkbox with IE 8 by using InternetExplorerDriver: When I try clicking
on
the checkbox, the checkbox doesn't checked. The same code is working perfectly with FF3.6.
I know that IE Driver doesn't support cssSelector yet so I do not use css.
I have tried the followings:
driver.findElements(By.name("...")).click();
driver.findElement(By.xpath("//input[@name='...' and @value='...']") ).click();
....
and much more, but without any results
The part of HTML is:
I’m really stuck on this problem.
Please for your help.
I have an issue when checking a checkbox with IE 8 by using InternetExplorerDriver: When I try clicking
on
the checkbox, the checkbox doesn't checked. The same code is working perfectly with FF3.6.
I know that IE Driver doesn't support cssSelector yet so I do not use css.
I have tried the followings:
driver.findElements(By.name("...")).click();
driver.findElement(By.xpath("//input[@name='...' and @value='...']") ).click();
....
and much more, but without any results
The part of HTML is:
- Code:
<div class="input inputLevel3">
<div>
<label><input type="checkbox" value="yes" name="TPCActivate"><span id="XSLtpca0006">Activated</span></label>
</div>
</div>
I’m really stuck on this problem.
Please for your help.
- Love SharmaRegular Participant
- Posts : 27
Join date : 2012-06-01
Re: How to check or uncheck the checkbox with IE8
Mon Jun 18, 2012 11:30 am
Hi Seli,
Click works fine to check the checkbox in IE8.
Just debug the code and confirm if it finds the element correctly before clicking in IE8?
Thanks,
Lovekesh
Click works fine to check the checkbox in IE8.
Just debug the code and confirm if it finds the element correctly before clicking in IE8?
Thanks,
Lovekesh
- SouravActive particpant
- Posts : 17
Join date : 2012-06-28
Re: How to check or uncheck the checkbox with IE8
Thu Jun 28, 2012 5:57 pm
Hi Seli,
In case one alternate solution can be as below
String currChkboxValue = checkbox.getAttribute("checked");
if(currChkboxValue==null || "false".equalsIgnoreCase(currChkboxValue))
{
if(checkbox instanceof InternetExplorerElement)
{
checkbox.sendKeys(Keys.SPACE);
}
else
checkbox.click();
}
In case one alternate solution can be as below
String currChkboxValue = checkbox.getAttribute("checked");
if(currChkboxValue==null || "false".equalsIgnoreCase(currChkboxValue))
{
if(checkbox instanceof InternetExplorerElement)
{
checkbox.sendKeys(Keys.SPACE);
}
else
checkbox.click();
}
Permissions in this forum:
You cannot reply to topics in this forum