-2
我無法在硒的webdriver-Java來選擇單選按鈕以指定的HTML代碼無法找到硒單選按鈕的webdriver
<input id="idcc-de81e53f-7cfd-4136-816f-d09d4055eeee" type="radio" value="de81e53f-7cfd-4136-816f-d09d4055eeee" name="panels:0:panel:stepContainer:stepTypeDisplay:optionPanel:options">
<label for="idcc-de81e53f-7cfd-4136-816f-d09d4055eeee">Canada</label>
<br>
<input id="idcc-17c1d432-5cec-4da9-9a02-39986d508770" type="radio" value="17c1d432-5cec-4da9-9a02-39986d508770" name="panels:0:panel:stepContainer:stepTypeDisplay:optionPanel:options">
<label for="idcc-17c1d432-5cec-4da9-9a02-39986d508770">United States</label>
您的意思是發佈一些代碼?我看不到任何東西。 – jsheeran
plz發佈問題的源代碼 –
WebElement radioButtonCanada = driver.findElement(By.id(「idcc-de81e53f-7cfd-4136-816f-d09d4055eeee」)); \t \t radioButtonCanada.click(); \t \t \t \t \t \t //美國 \t \t \t WebElement radioButtonUS = driver.findElement(By.xpath( 「(//輸入[含有(@Text, '美國')]」)); \t \t \t radioButtonUS.click(); – user2866432