我想單擊頁面頂部的按鈕。我使用CSS選擇器,它在我當地的eclipse中運行它時工作得很好。但是當我嘗試運行它時在本地機器上的Jenkins服務器上,它失敗,說元素不可點擊。 當我在Jenkins上看到失敗測試的截圖時,我發現頭部與我想單擊的按鈕重疊。 我已經嘗試了幾乎所有使用XPath,CSS,移動到元素,移動鼠標。 但仍然無法修復它,有人請幫忙。元素在點上不可點擊。其他元素將收到點擊:
我特林單擊添加buttoun
org.openqa.selenium.WebDriverException: Element is not clickable at point (775.25, 10.166671752929688). Other element would receive the click: <div class="globalHeader-UtilTop"></div>
Command duration or timeout: 69 milliseconds
Build info: version: '2.53.0', revision: '35ae25b1534ae328c771e0856c93e187490ca824', time: '2016-03-15 10:43:46'
System info: host', ip: '', os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.7.0_80'
<div class="Componet-intels**strong text**-Container">
<div class="Componet-intels-Container-Header">
<div class="Componet-intels-Container-Content">
<div class="Componet-intels-Container-Content-Row">
<span class="Componet-intels-Item"> Item # </span>
<span class="Componet-intels-Text-Item">
<span class="Componet-intels-Lable-Quantity"> Qty: </span>
<span class="Componet-intels-Text-Quantity">
<span class="Componet-intels-Button">
**<input class="Componet-intelsButtonIcon" type="button" value="Add">**
</span>
</div>
沒有一些HTML預覽/硒代碼很難幫助 – Dekel
@Dekel更新了帖子。感謝您的建議。 – Samantha
''元素,我使用'.submit()'而不是'.click()'方法修復了類似的問題。 – jfs