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.
如果用户名字段为空,我想处理“请输入用户名”之类的验证消息。目前我正在从 excel 表中获取数据,我想将验证消息与列“预期结果”的行值进行比较,如果这两个匹配项将结果作为“通过”在 excel 表中。
用两种方法试试
1) selenium.visible("text") 它将捕获隐藏的文本和客户端消息
2) 在等待 Alert 函数后尝试使用 Getalert() 和 .Isalertpresent()
assertEquals("请输入用户名", selenium.getAlert());
或者
assertTrue(selenium.isTextPresent("请输入用户名"));
详细信息链接:http ://seleniumhq.org/docs/05_selenium_rc.jsp