如何使用webdriver验证文本字段中的Extract Autopopulate值?

时间:2016-03-15 10:06:24

标签: javascript selenium selenium-webdriver

我有Zipcode输入框,一旦我输入Zipcode,状态和城市输入框就会自动填充相关数据。如何捕获和验证那些州和城市输入框值使用Selenium enter image description here Webdriver输入图像描述继承人?

1 个答案:

答案 0 :(得分:0)

此处只需要使用getText()从任何指定位置检索文本,并可以通过断言进行验证。让我们说状态字段的id是'state',然后是

 String populatedState=driver.findElement(By.id("state")).getText();

 Assert.assertEquals(populatedState, "expected state here");

谢谢你, 穆拉利