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.
我的网页中有很多按钮,它们也是 javascript 按钮。所有这些按钮都有相同的 TagName,但不同的 id。但我不能使用 ID,因为我无法预测必须点击哪个按钮。
Selenium 将搜索内容(此处的问题),如果可以找到该内容,则必须单击相应的按钮。如何实现?
任何评论都会非常有帮助和赞赏..
这将根据按钮上显示的文本找到一个按钮并单击它。
var loggout = driver.FindElement(By.LinkText("Logg ut")); loggout.Click();
或者您可以将其更改为;
By.Id() By.CssSelector() By.Name() ...