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.
12 lines
444 B
12 lines
444 B
const setupPage = require("../pages/setup-page");
|
|
|
|
class SetupTask {
|
|
fillAndSubmitSetupForm(username, password, passwordRepeat) {
|
|
cy.get(setupPage.SetupPage.usernameInput).type(username);
|
|
cy.get(setupPage.SetupPage.passWordInput).type(password);
|
|
cy.get(setupPage.SetupPage.passwordRepeatInput).type(passwordRepeat);
|
|
cy.get(setupPage.SetupPage.submitSetupForm).click();
|
|
}
|
|
}
|
|
exports.SetupTask = SetupTask;
|