-2
例:ラジオ -Seleniumを使用してHTMLタグに値のない属性を見つける方法はありますか?
<input id="rdo" type="radio" name="nrdo" value="1" checked>
をチェックする例:ラジオ - 未確認
<input id="rdo" type="radio" name="nrdo" value="1">
が値なしで属性を見つける必要がセレンを使用して、HTMLタグやない上に存在します。
public boolean isAttribtuePresent(String element, String attribute) {
Boolean result = false;
String value = "vvv";
// element = "Month ''May'' @xpath=//button[text()='Jun']";
try {
value = webElement.getAttribute(attribute);
if (value != null) {
result = true;
}
} catch (Exception e) {
System.out.print(e.toString());
}
System.out.print("***"+value+"*****");
return result;
}
?ありがとう – DebanjanB
あなたの質問を[編集]する代わりに、コメントセクションを使ってコードを投稿してください。 – Shashanth