fuel-ui/static/tests/functional/pages/login.js

58 lines
1.6 KiB
JavaScript

/*
* Copyright 2015 Mirantis, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
**/
import Helpers from 'tests/functional/helpers';
class LoginPage {
constructor(remote) {
this.remote = remote;
}
login(username, password) {
username = username || Helpers.username;
password = password || Helpers.password;
return this.remote
.setFindTimeout(500)
.setWindowSize(1280, 1024)
.getCurrentUrl()
.then((url) => url === Helpers.serverUrl + '/#login' || this.logout())
.setInputValue('[name=username]', username)
.setInputValue('[name=password]', password)
.clickByCssSelector('.login-btn');
}
logout() {
return this.remote
.getCurrentUrl()
.then((url) => url.indexOf(Helpers.serverUrl) === 0 ||
this.remote
.get(Helpers.serverUrl + '/#logout')
.findByClassName('login-btn')
.then(() => true)
)
.clickByCssSelector('li.user-icon')
.clickByCssSelector('.user-popover button.btn-logout')
.findByCssSelector('.login-btn')
.then(
() => true,
() => true
);
}
}
export default LoginPage;