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.
我正在尝试将 Visual Studio MVC3 与 C# 和 Selenium Webdriver 一起使用来测试登录页面上的字段验证。我需要 Selenium 脚本能够通过显示的错误文本来判断登录是否失败。我有哪些选择?
您可以登录 selenium,然后在页面上查找一些文本,或者如果警告/错误文本在元素内,您可以使用类似 -
element.Text.Equals("text");
当然,这确实是通用的,无需您显示任何代码。