既然是本公司自己的项目,开发不可以直接提供接口地址,输入以及预期输出吗?
/**
* 判断元素是否存在
*/
public boolean isElementExist(By Locator) {
try {
driver.findElement(Locator);
return true;
} catch (org.openqa.selenium.NoSuchElementException ex) {
return false;
}
}