C#selenium无法通过xpath找到按钮

时间:2018-03-30 14:23:26

标签: c# selenium selenium-webdriver xpath htmlelements

我正在尝试使用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>

请告诉我如何纠正我的代码?

由于

1 个答案:

答案 0 :(得分:1)

如果您希望找到文本为自定义的按钮,因为元素是 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']")));