Selenium:没有这样的元素例外情况正在http://www.salesfoce.com/甚至认为存在元素存在

发布于 2025-01-24 05:32:22 字数 659 浏览 0 评论 0 原文

我正在尝试找到一个元素 by.cssselector(“#e1”)。在此网站上: salesfoce.com

我正在尝试在第一个按钮上找到一个元素(下图),即< div>

来自Java,我尝试了XPATH和CSSSELECTOR,但每次我都会得到没有这样的元素例外。 我还使用了隐式和明确的等待,但仍然得到同样的例外。

但是,如果我发现使用检查元素而不是突出显示元素。

I am trying to find an element By.cssSelector("#e1"). On this website : SALESFOCE.COM.

I am trying to find an element on this first button(image below), which is a <div>. This button

From java, I tried By.xPath and By.cssSelector but every time I am getting No such element exception.
I also used Implicit and explicit wait still getting same exception.

But if I find using inspect element than it highlights the element.
enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

荒路情人 2025-01-31 05:32:22

元素 salesforce iframe 下,您需要首先切换到 iframe 才能访问元素。

使用 WebDriverWait(),并等待 frametobeavailableandswitchtoit(),并使用以下定位器来识别。

使用 WebDriverWait(),然后等待 elementTobeClickable(),并使用以下定位器来识别。

driver.get("http://ww1.salesfoce.com/")
new WebDriverWait(driver, Duration.ofSeconds(10)).until(ExpectedConditions.frameToBeAvailableAndSwitchToIt(By.cssSelector("#rs>iframe")));

new WebDriverWait(driver, Duration.ofSeconds(10)).until(ExpectedConditions.elementToBeClickable(By.xpath("//span[text()='Salesforce']"))).click();

The element Salesforce is under iframe you need to switch to iframe first in order to access the element.

Use WebdriverWait() and wait for frameToBeAvailableAndSwitchToIt() and use following locator to identify.

Use WebdriverWait() and wait for elementToBeClickable() and use following locator to identify.

driver.get("http://ww1.salesfoce.com/")
new WebDriverWait(driver, Duration.ofSeconds(10)).until(ExpectedConditions.frameToBeAvailableAndSwitchToIt(By.cssSelector("#rs>iframe")));

new WebDriverWait(driver, Duration.ofSeconds(10)).until(ExpectedConditions.elementToBeClickable(By.xpath("//span[text()='Salesforce']"))).click();
破晓 2025-01-31 05:32:22

The element with the text as Salesforce is within an <iframe>

salesforce_iframe


Solution

To click on the element with text as Salesforce within the website you have to:

  • Induce WebDriverWait for the desired frameToBeAvailableAndSwitchToIt.
  • Induce WebDriverWait for the desired elementToBeClickable.
  • You can use either of the following Locator Strategies:
    • Using xpath:

      driver.get("http://ww1.salesfoce.com/");
      new WebDriverWait(driver, Duration.ofSeconds(10)).until(ExpectedConditions.frameToBeAvailableAndSwitchToIt(By.xpath("//iframe[starts-with(@src, 'https://www.google.com/afs/ads?adtest')]")));
      new WebDriverWait(driver, Duration.ofSeconds(10)).until(ExpectedConditions.elementToBeClickable(By.xpath("//span[text()='Salesforce']"))).click();
      
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文