List<WebElement> count= driver.findElements(by.xpath("abc"));
如果我使用上面的行,我会收到一个错误:
"Type safety: The expression of type List needs unchecked conversion to conform to List<WebElement>"
我正在做一个TestProject编码的 android 测试
List<WebElement> count= driver.findElements(by.xpath("abc"));
如果我使用上面的行,我会收到一个错误:
"Type safety: The expression of type List needs unchecked conversion to conform to List<WebElement>"
我正在做一个TestProject编码的 android 测试