我是Selenium的新手。我正在为登录页面编写测试脚本,我的问题是:如果用户名&输入的密码不正确&单击登录按钮后将显示错误消息。我想通过selenium验证它,我得到了错误信息。我还想在控制台窗口中显示它。我尝试使用
WebElement ErrorMsg = driver.findElement(By.xpath("//*[contains(text(),'Password cannot be blank')]"));
System.out.println("" +ErrorMsg);
但它没有用。
提前致谢。