为了账号安全,请及时绑定邮箱和手机立即绑定

我无法提取正确的 xpath ,可以帮助我

我无法提取正确的 xpath ,可以帮助我

德玛西亚99 2023-04-19 16:33:41
对于 xpath 请帮我获取 xpath
查看完整描述

2 回答

?
月关宝盒

TA贡献1772条经验 获得超5个赞

尝试 //a[@class='registrationBtn']/span[1]



查看完整回答
反对 回复 2023-04-19
?
千巷猫影

TA贡献1829条经验 获得超7个赞

要处理动态元素,请引入WebDriverWait并等待元素elementToBeClickable然后单击。


试试下面的代码。


WebDriverWait wait = new WebDriverWait(driver, 30);

WebElement element = wait.until(ExpectedConditions.elementToBeClickable(By.xpath("//div[@class='fr mt-header']/a[@class='registrationBtn' and @title='Client-Patient Registration']")));

element.click()

或者


WebDriverWait wait = new WebDriverWait(driver, 30);

WebElement element = wait.until(ExpectedConditions.elementToBeClickable(By.xpath("//div[@class='fr mt-header']/a[@class='registrationBtn' and @title='Client-Patient Registration']/span[@class='reg_icon']")));

element.click()


查看完整回答
反对 回复 2023-04-19
  • 2 回答
  • 0 关注
  • 106 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信