var webdriver = require('selenium-webdriver'), By = webdriver.By, until = webdriver.until;//chromevar driver = new webdriver.Builder() .forBrowser('firefox') .build();//判断是否有登陆function isLogin(driver) { try { driver.findElement(By.id('loginForm')) return true } catch (error) { return false }}已经使用 try catch 捕获,但还是会报错不执行下去了 throw error; ^NoSuchElementError: Unable to locate element: *[id="loginForm"]selenium-webdriver js 版本的 如何 判断某个元素是否存在呢
添加回答
举报
0/150
提交
取消