You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
419 B
18 lines
419 B
require('chromedriver')
|
|
const webdriver = require('selenium-webdriver')
|
|
|
|
exports.delay = function delay (time) {
|
|
return new Promise(resolve => setTimeout(resolve, time))
|
|
}
|
|
|
|
|
|
exports.buildWebDriver = function buildWebDriver (extPath) {
|
|
return new webdriver.Builder()
|
|
.withCapabilities({
|
|
chromeOptions: {
|
|
args: [`load-extension=${extPath}`],
|
|
},
|
|
})
|
|
.forBrowser('chrome')
|
|
.build()
|
|
}
|
|
|