我有Zipcode输入框,一旦我输入Zipcode,状态和城市输入框就会自动填充相关数据。如何捕获和验证那些州和城市输入框值使用Selenium enter image description here Webdriver输入图像描述继承人?
答案 0 :(得分:0)
此处只需要使用getText()从任何指定位置检索文本,并可以通过断言进行验证。让我们说状态字段的id是'state',然后是
String populatedState=driver.findElement(By.id("state")).getText();
Assert.assertEquals(populatedState, "expected state here");
谢谢你, 穆拉利