gpt4 book ai didi

Selenium Webdriver 无法获取 Modal 中的元素

转载 作者:行者123 更新时间:2023-12-03 06:28:02 25 4
gpt4 key购买 nike

我正在编写一个 Selenium Webdriver 脚本,该脚本应该单击链接,然后弹出此模态窗口。

Modal Window on the page

当我尝试访问卡号字段(//input[@id=pan])时,出现“找不到此类元素”异常org.openqa.selenium.NoSuchElementException:没有此类元素:无法定位元素: {“方法”:“id”,“选择器”:“平移”}

Input control I want to get hold of

这是我尝试过但没有成功的代码:

WebElement modal = driver.findElement(By.xpath("//div[@class='ute-pay-now-modalContent']"));
driver.switchTo().frame(modal);
WebElement el = driver.findElement(By.xpath("//input[@id='pan']"));

也尝试过这个:

WebElement modal = driver.findElement(By.className("ute-pay-now-modalContent"));
driver.switchTo().frame(modal);
WebElement el = driver.findElement(By.xpath("//input[@id='pan']"));

也尝试过这个:

WebDriverWait block = new WebDriverWait(driver,10);
WebElement modal = block.until(ExpectedConditions.visibilityOfElementLocated(By.className("ute-pay-now-modalContent")));
WebElement pan;
pan = modal.findElement(By.id("pan"));

也尝试过这个:

driver.switchTo().defaultContent();

也尝试过这个:

driver.switchTo().activeElement();

有人可以帮我建议如何解决这个问题吗?

最佳答案

看起来<div class="ute-pay-‌​now-modalContent">包含iframe#sema需要 input field 。尝试下面的代码并让我知道结果:

WebDriverWait block = new WebDriverWait(driver,10);
block.until(ExpectedConditions.visibilityOfElementLocated(By.className("ute-pay-now-modalContent")));
driver.switchTo().frame("sema");
WebElement pan;
pan = modal.findElement(By.id("pan"));

关于Selenium Webdriver 无法获取 Modal 中的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42882523/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com