我想切換到單擊圖像時生成的jQuery模態窗口。然而Selenium(IE Webdriver)無法識別生成的模式窗口並且無法切換。沒有異常/錯誤顯示!Selenium IE Webdriver:無法切換到jQuery模態窗口
IE版本 - 11 硒版本 - 2.53 IE版本的webdriver - 2.53.1
我曾嘗試切換代碼:
objMovePage.clickFromAccountPicker(); //Image clicked
Thread.sleep(2000); //Wait for new window to show up
Set<String> windows = driver.getWindowHandles();
System.out.println(windows.size()); // This returns 1 always.
for(String handle: windows)
{
driver.switchTo().window(handle);
}
System.out.println(driver.getTitle()); //Prints current window title
我也曾嘗試driver.switchTo().window("<window name>"); // This also doesn't work.
HTML代碼被點擊圖片
<td style="height: 20px">
<input id="imgPickAcct" align="top" type="image" style="border-width:0px;" onclick="PickAcctClick(711269, 450, 300);" src="images/magnifyglass.gif" tabindex="-1" name="imgPickAcct">
</td>
JS功能碼
function PickAcctClick(intTransmissionID, intwidth, intheight)
{
var lstrPath = 'wfrmGetTransmittedAccounts.aspx?TransmissionID=' + intTransmissionID;
var returnValues = openModal(lstrPath, intwidth, intheight);
if (returnValues != undefined)
{
document.forms[0].txtFromAccountingID.value = returnValues[0].toString();
document.forms[0].txtFromDept.value = returnValues[1].toString();
document.forms[0].txtFromAcct.value = returnValues[2].toString();
document.forms[0].txtFromCur.value = returnValues[3].toString();
document.forms[0].txtFromProduct.value = returnValues[4].toString();
if (isAnObject("txtFromChart1"))
{document.forms[0].txtFromChart1.value = returnValues[5].toString();}
if (isAnObject("txtFromChart2"))
{document.forms[0].txtFromChart2.value = returnValues[6].toString();}
if (isAnObject("txtFromChart3"))
{document.forms[0].txtFromChart3.value = returnValues[7].toString();}
}
return false;
}
注:這不是從在showModalDialog警告或對話窗口。 編輯:沒有iFrame。
它在一個帶有自己HTML代碼的新窗口中打開。沒有切換,我試圖執行元素操作,得到NoSuchElementException – Haxor
這是一個真正的彈出?我懷疑你寫了'System.out.println(windows.size()); //總是返回1。這強烈地表明沒有創建新窗口。另外一個模式窗口不應該在新窗口中打開。如果您確定模式窗口是彈出窗口並且未被硒找到,請發佈截圖和/或html – samjaf
添加屏幕截圖。 – Haxor