我是Selenium WebDriver測試的新手,我嘗試在工作中使用它。我嘗試了許多選擇器,xpaths等的組合,但我無法移過它。我也在stackoverflow上搜索了很多類似的主題,可惜沒有預期的結果。我需要的是能夠點擊「無服務」按鈕(一個href)。當我嘗試時,我不斷收到錯誤,說明此元素不可見。當我嘗試使用「等待」處理此錯誤時,我不斷收到另一個錯誤「預期的條件失敗:等待元素的可見性...」。我究竟做錯了什麼?Selenium WebDriver Java - 元素不可見
我的代碼:
WebDriverWait waitWait = new WebDriverWait(driver, 40);
waitWait.until(ExpectedConditions.visibilityOfElementLocated(By.className("withoutService")));
WebElement x = driver.findElement(By.className("withoutService"));
x.click();
,也是一個HTML代碼片段從網頁:
<div id="fancybox-outer">
<div id="fancybox-content">
<div style="width:auto;position:relative;">
<div id="serviceReminder" style="width: 765px">
<form id="serviceReminderFrom" method="post">
<div class="homeMessage">
<div class="innerMessage">
<input type="hidden" id="serviceToAddReminderFromAction" name="F_ACTION" value="">
<input type="hidden" id="itemsWithServices" name="itemsWithServices" value="">
<input type="hidden" name="eventTypeName" value="Something">
<div class="ServicesDelivery"><span class="disable-button"></span>
<a href="javaScript:void(0);" rel="3" class="withoutService btn btn-fourth" onclick="registerButtonClickOnPopup('NO SERVICE'); setTimeout(function(){registerButtonClickOnPopup('NO SERVICE');},400);">NO SERVICE</a>
<a href="javascript:void(0)" rel="1" class="next js-tooltip btn btn-second" onclick="registerButtonClickOnPopup('ADD SERVICE'); setTimeout(function(){registerButtonClickOnPopup('ADD SERVICE');},400);">ADD SERVICE</a>
<div class="none">
</div>
<div class="clear"></div>
</div>
</div>
</div>
</form>
</div></div></div><a id="fancybox-close" style="display: inline;"></a><div id="fancybox-title" class="" style="display: none;">
</div><a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a><a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a></div>
你正在尋找的元素包含在「隱藏」的輸入內,你在測試中做了些什麼來使輸入不被隱藏? – Josh
@Josh,不,它不是隱藏的「輸入」的一部分。 AFAIK,'input'元素只能包含屬性,而不能包含其他節點。 – Andersson