Webdriver - Xpath for URL embedded in Image
Webdriver - Xpath for URL embedded in Image
我想为员工功能自动上传个人资料图片。
但是,点击员工照片图像后会出现上传按钮,该图像是 URL 嵌入图像
<div id="profile-pic">
<h1>fg gh</h1>
<div class="imageHolder">
<a href="/orangehrm-3.2.1/orangehrm-3.2.1/symfony/web/index.php/pim/viewPhotograph/empNumber/0065" class="tiptip">
<img alt="Employee Photo" src="/orangehrm-3.2.1/orangehrm-3.2.1/symfony/web/index.php/pim/viewPhoto/empNumber/0065" border="0" id="empPic" width="200" height="200">
</a>
</div>
</div>
这是员工 link 中动态的代码片段。
它附有每个员工 ID。
你能帮忙看看 Xpath 吗?
如果您知道员工编号,您可以将其设为 //img[contains(@src,'0065')]
否则 //div[@id='profile-pic']/img
我想为员工功能自动上传个人资料图片。 但是,点击员工照片图像后会出现上传按钮,该图像是 URL 嵌入图像
<div id="profile-pic">
<h1>fg gh</h1>
<div class="imageHolder">
<a href="/orangehrm-3.2.1/orangehrm-3.2.1/symfony/web/index.php/pim/viewPhotograph/empNumber/0065" class="tiptip">
<img alt="Employee Photo" src="/orangehrm-3.2.1/orangehrm-3.2.1/symfony/web/index.php/pim/viewPhoto/empNumber/0065" border="0" id="empPic" width="200" height="200">
</a>
</div>
</div>
这是员工 link 中动态的代码片段。 它附有每个员工 ID。
你能帮忙看看 Xpath 吗?
如果您知道员工编号,您可以将其设为 //img[contains(@src,'0065')]
否则 //div[@id='profile-pic']/img