gpt4 book ai didi

java - 如何通过Selenium找到具有随机id属性的元素

转载 作者:行者123 更新时间:2023-12-01 06:42:13 24 4
gpt4 key购买 nike

如何通过 id 找到最后 2 位数字随机变化的输入元素?

<input id="start-time-hours-c31" class="focused" name="startTimeHours" value="" placeholder="hh" maxlength="2" type="text">

最佳答案

快速回答

当最后 2 位数字随机变化时,

driver.findElement(By.xpath("//input[contains(@id,'start-time-hours-c')]"));

使用输入标记的 2 个属性,

driver.findElement(By.xpath("//input[@name='startTimeHours' and @class='focused']"));

请告知我们是否解决了您的疑问。

关于java - 如何通过Selenium找到具有随机id属性的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55232488/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com