mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 04:46:10 +01:00
18 lines
395 B
JavaScript
18 lines
395 B
JavaScript
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()
|
|
}
|