gpt4 book ai didi

java - WebDriver等待iframe,通过其名称的一部分进行识别

转载 作者:行者123 更新时间:2023-12-01 06:17:10 25 4
gpt4 key购买 nike

当我只知道其名称的一部分时,我在等待 iframe 并切换到它时遇到问题。每次加载页面时该名称都是唯一的。模式为“Framexxxxxxx”,其中“xxxxx”是随机数。

有没有办法让 webdriver ExpectedConditions.frameToBeAvailableAndSwitchToIt() 找到该 iframe?

到目前为止我已经尝试过:

By.xpath(".//*[starts-with(name(),'Frame')]")
By.xpath("iframe[starts-with(@name,'Frame')]")

还有其他一些方法 - 没有运气。

提前致谢。

最佳答案

尝试使用以下定位器

By.xpath("//*[starts-with(@name,'Frame')]")
By.xpath("//iframe[starts-with(@name,'Frame')]")
By.cssSelector("iframe[name*='Frame']")

您可以使用相同的定位器来等待 iframe 出现/可用。

关于java - WebDriver等待iframe,通过其名称的一部分进行识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21868197/

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