summary refs log tree commit diff
path: root/syweb/webclient/test/protractor.conf.js
blob: 76ae7b712b0b8b4a6af7546cd9ffcc9c875a8bcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var env = require("./environment-protractor.js");
exports.config = {
    seleniumAddress: env.seleniumAddress,
    specs: ['e2e/*.spec.js'],
    onPrepare: function() {
        browser.driver.get(env.baseUrl);
        browser.driver.findElement(by.id("user_id")).sendKeys(env.username);
        browser.driver.findElement(by.id("password")).sendKeys(env.password);
        browser.driver.findElement(by.id("login")).click();

        // wait till the login is done, detect via url change
        browser.driver.wait(function() {
            return browser.driver.getCurrentUrl().then(function(url) {
                return !(/login/.test(url))
            });
        });
    }
}