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テストを行っています