Created
December 1, 2018 08:28
-
-
Save Lewiscowles1986/e06ce70f06517ca4aeaad0fd4923f9ea to your computer and use it in GitHub Desktop.
Sitespeed.io preScript for logging in using username+password before running tests.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
run(context) { | |
return context.runWithDriver((driver) => { | |
return driver.get(context.options.loginUrl) | |
.then(() => { | |
const webdriver = context.webdriver; | |
const until = webdriver.until; | |
const By = webdriver.By; | |
const userName = context.options.username || 'admin'; | |
const password = context.options.password || 'password'; | |
driver.findElement(By.css(context.options.usernameFieldCSS || 'input[name="username"]')).sendKeys(userName); | |
driver.findElement(By.css(context.options.passwordFieldCSS || 'input[name="password"][type="password"]')).sendKeys(password); | |
const loginButton = driver.findElement(By.css(context.options.loginButtonCSS || '[type="submit"]')).click(); | |
return driver.wait(until.elementLocated(By.css(context.options.postLoginSelectors)), 10000); | |
}); | |
}) | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment