Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法在 google 工具包中选择 id、xpath 的名称。如何获取 id、xpath 的名称并在 selenium webdriver 中使用它?请帮我!!太感谢了!
很久以前我遇到了同样的问题,并且有一个潜在答案的样本。
使用 xpath,您还可以使用其他一些属性来获取类似class.
class
有一个例子:By.xpath("/div/input[contains(@class,"GJ5KOJLBM2")]");
By.xpath("/div/input[contains(@class,"GJ5KOJLBM2")]");
你能少放一点你的html代码吗?