如何从图像存储 href xpath selenium ide ui vision katalon recorder
How store href from an image xpath selenium ide ui vision katalon recorder
我想从图像中存储 href url 但是当我尝试它时显示错误
这是代码
<a href="/mysite.com"><img src="//user/banners/16/08/1614708.gif" alt="AAA" data-tip="BBB" currentitem="false" class="" width="468" height="60"></a>
我要存储mysite.com
我已经尝试使用 xpath 和 @href 存储属性但显示错误(仅对文本 link 无效)
通常我使用 ui vision 或 katalon 记录器,但我暂时找不到好的解决方案。
我只需要 xpath
试试这个,让父级获得 img src 的标签。
print(driver.find_element_by_xpath("img[src='//user/banners/16/08/1614708.gif']//parent::a").get_attribute('href'))
我想从图像中存储 href url 但是当我尝试它时显示错误
这是代码
<a href="/mysite.com"><img src="//user/banners/16/08/1614708.gif" alt="AAA" data-tip="BBB" currentitem="false" class="" width="468" height="60"></a>
我要存储mysite.com
我已经尝试使用 xpath 和 @href 存储属性但显示错误(仅对文本 link 无效)
通常我使用 ui vision 或 katalon 记录器,但我暂时找不到好的解决方案。
我只需要 xpath
试试这个,让父级获得 img src 的标签。
print(driver.find_element_by_xpath("img[src='//user/banners/16/08/1614708.gif']//parent::a").get_attribute('href'))