When using the IE driver with IE9, occasionally the Click method will only select a button, it wont do the action of the Click(). Note this only happens occasionally, so i d
PHPUnit + facebook / php-webdriver sometimes the function click() doesn't check checkbox element.
my solution is:
$Element = $WebDriver->findElement( WebDriverBy::id('checkbox_id') ); if(false === $Element->isSelected()) { $Element->sendKeys(WebDriverKeys::SPACE); }