Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Firefox16とselenuimwebdriver2.26.0で、次の後にラジオボタンがクリックされなかったという奇妙な問題があります。
driver.findElement(By.xpath("path_to_radio_button")).click();
例外はありませんが、結果もありません。Chromeではクリックされました。
この問題を解決するのに何が役立ちますか?
これを使ってみてください
IWebElement radio = driver.FindElement(By.ID(//radiobutton id)); if(radio.Selected) { //do something here. }
また
driver.findElement(By.xpath("//input[@type='radio' and @value='Radio2']")).isSelected();