Skip to content

Instantly share code, notes, and snippets.

@Lewiscowles1986
Created December 1, 2018 08:28
Show Gist options
  • Save Lewiscowles1986/e06ce70f06517ca4aeaad0fd4923f9ea to your computer and use it in GitHub Desktop.
Save Lewiscowles1986/e06ce70f06517ca4aeaad0fd4923f9ea to your computer and use it in GitHub Desktop.
Sitespeed.io preScript for logging in using username+password before running tests.
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