2022-11-08 16:41:47 +08:00
|
|
|
const { By, Key, until, Builder } = require('selenium-webdriver')
|
|
|
|
|
|
|
|
const BasePage = require('./BasePage')
|
|
|
|
|
2023-02-21 20:07:37 +08:00
|
|
|
const FORM = By.css('div#login form')
|
2022-11-08 16:41:47 +08:00
|
|
|
const USERNAME = By.css('input[name="username"]')
|
|
|
|
const PASSWORD = By.css('input[name="password"]')
|
|
|
|
const LOGIN_BUTTON = By.css('div#outer div#login form input[type=submit]')
|
|
|
|
|
|
|
|
module.exports = class LoginPage extends BasePage {
|
|
|
|
async isLoaded () {
|
|
|
|
return this.waitForDisplayed(FORM)
|
|
|
|
}
|
|
|
|
|
|
|
|
async login (username, password) {
|
|
|
|
await this.isLoaded()
|
|
|
|
await this.sendKeys(USERNAME, username)
|
|
|
|
await this.sendKeys(PASSWORD, password)
|
|
|
|
return this.submit(FORM)
|
|
|
|
}
|
|
|
|
|
|
|
|
async getLoginButton () {
|
|
|
|
return this.getValue(LOGIN_BUTTON)
|
|
|
|
}
|
|
|
|
}
|