view client/tests/e2e/specs/protocols.js @ 5338:f8e7f043d968 extented-report

Fixed example_conf.toml for new report-path.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 15 Jun 2021 22:00:20 +0200
parents f90f2fd94fbc
children
line wrap: on
line source

/* This is Free Software under GNU Affero General Public License v >= 3.0
 * without warranty, see README.md and license for details.
 *
 * SPDX-License-Identifier: AGPL-3.0-or-later
 * License-Filename: LICENSES/AGPL-3.0.txt
 *
 * Copyright (C) 2018 by via donau
 *   – Österreichische Wasserstraßen-Gesellschaft mbH
 * Software engineering by Intevation GmbH
 *
 * Author(s):
 * Thomas Junk <thomas.junk@intevation.de>
 */

// For authoring Nightwatch tests, see
// http://nightwatchjs.org/guide#usage

module.exports = {
  "Loading protocols": browser => {
    browser
      .url(process.env.VUE_DEV_SERVER_URL)
      .waitForElementVisible("#app", 5000)
      .setValue("input[id='inputUsername']", "sophie")
      .setValue("input[id='inputPassword']", "so2Phie4")
      .click("button[type='submit']")
      .pause(1000)
      .click(".menubutton")
      .pause(1000)
      .click("a[href='#/logs']")
      .pause(1000)
      .assert.urlContains("#/logs")
      .click("#accesslog")
      .click("#errorlog")
      .assert.urlContains("#/logs")
      .end();
  }
};