blob: eb14595d463b9bc4d24ad1703fdbab139ca0f430 [file] [log] [blame]
// 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.
exports.command = LoginToGui;
function LoginToGui (user, pw) {
const client = this;
const waitTime = client.globals.maxWaitTime;
const baseUrl = client.options.launch_url;
const username = user || client.options.fauxton_username;
const password = pw || client.options.password;
client
.resizeWindow(1200, 1200)
.url(baseUrl + '/#/login')
.waitForElementPresent('a[href="#/login"]', 50000, false)
.click('a[href="#/login"]')
.waitForElementVisible('.couch-login-wrapper', waitTime, false)
.waitForElementVisible('#username', waitTime, false)
.setValue('.couch-login-wrapper #username', [username])
.waitForElementVisible('#password', waitTime, false)
.setValue('.couch-login-wrapper #password', [password])
.clickWhenVisible('#submit')
.closeNotification()
.waitForElementPresent('[data-name="jump-to-db"]', waitTime, false)
// important! wait for the db page to fully load. This was the cause of many bugs
.waitForElementVisible('#dashboard-content table.databases', waitTime, false);
return this;
};