アクション:
以下のxpathでチェックボックスをチェックしたい
WebElement checkBoxSelection = driver.findElement(By.xpath("//*[@id='tblusref']/tbody/tr[1]/td[2]/input"));
checkBoxSelection.click();
私のxpathは正しく、chrome開発者ツールでも検証されましたが、実行中にチェックボックスをクリックせず、例外が発生しません
同じように、Firefox ドライバーでは完全に動作しますが、Chrome と IE では動作しません。この問題を解決するにはどうすればよいですか?
ドライバーの依存関係
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-chrome-driver</artifactId>
<version>2.53.1</version>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-ie-driver</artifactId>
<version>2.42.2</version>