const {Builder, By, Key, util} = require("selenium-webdriver/Firefox");
async function example(){
let driver = await new Builder().forBrowser('Firefox').build();
await driver.get("https://www.google.com");
await driver.findElement(By.name("q")).sendKeys("Selenium", Key.RETURN);
你好, 尽管我在系统中添加了webdriver路径,但无法执行测试,但是我一直在遇到这些错误。 有没有人经历过类似的事情?
(node:15844) UnhandledPromiseRejectionWarning: Error: Do not know how to build driver: Firefox
(node:4764) UnhandledPromiseRejectionWarning: TypeError: Builder is not a constructor
答案 0 :(得分:1)
任何教程中的示例代码都出现相同的错误“TypeError: Builder.forBrowser is not a constructor”。原来他们在 Builder
之后错过了括号。
正确的代码:
let driver = await new Builder().forBrowser('chrome').build();
答案 1 :(得分:0)
只需尝试:
const {Builder, By, Key, util} = require('selenium-webdriver');
const firefox = require('selenium-webdriver/firefox');