C#硒无法通过XPATH定位按钮



我正在尝试使用xpath找到一个元素,但是我的代码不正确,我不确定写的语法。

我输入了下面的代码。

IWebElement customizeButton = driver.FindElement(By.XPath("//*[@id='container']/div/div[1]/div[1]/div[2]/button[2]"));

该元素的HTML代码低于

<button class="button u-space-ls js-customize-button button--primary " data-tooltip="{&quot;placement&quot;:&quot;left&quot;,&quot;title&quot;:&quot;Customize&quot;}" data-reactid=".0.0.0.3.3"><span class="icon icon-gear" data-reactid=".0.0.0.3.3.0"></span><span class="u-small-hidden u-medium-hidden" data-reactid=".0.0.0.3.3.1"> Customize</span></button>

您能否让我知道我应该如何更正我的代码?

谢谢

如果您想在 customize 上找到按钮,因为该元素为 javascript 已启用元素,您必须诱导 WebDriverWait 如下:

wait = new WebDriverWait(driver, TimeSpan.FromSeconds(30));
IWebElement customizeButton = wait.Until(ExpectedConditions.ElementToBeClickable(By.XPath("//button[@class='button u-space-ls js-customize-button button--primary']//span[@class='u-small-hidden u-medium-hidden']")));

相关内容

  • 没有找到相关文章

最新更新