view client/tests/e2e/specs/import.js @ 2268:05cfeeb65411

automatically trigger some imports
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 14 Feb 2019 15:33:35 +0100
parents
children 91ca0cdd2e35
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 = {
  "Bottleneck import": 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='#/importschedule']")
      .pause(600)
      .click(".newbutton")
      .pause(600)
      .click("#importtype option:nth-child(1)")
      .pause(600)
      .setValue(
        "input[type='url']",
        "https://openservices.doris-info.at/FIS/svc/BottleneckService_v3_0.svc"
      )
      .click(".trigger")
      .click("button[type='submit']")
      .end();
  },
  "Available fairwaydepth": 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='#/importschedule']")
      .pause(600)
      .click(".newbutton")
      .pause(600)
      .click("#importtype option:nth-child(4)")
      .pause(600)
      .setValue(
        "input[type='url']",
        "https://openservices.doris-info.at/FIS/svc/FairwayAvailabilityService_v3_0.svc"
      )
      .click(".trigger")
      .click("button[type='submit']")
      .end();
  },
  "Gauge measurement": 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='#/importschedule']")
      .pause(600)
      .click(".newbutton")
      .pause(600)
      .click("#importtype option:nth-child(3)")
      .pause(600)
      .setValue(
        "input[type='url']",
        "https://openservices.doris-info.at/FIS/svc/NtsWaterlevelService_v2_0_4_0.svc"
      )
      .click(".trigger")
      .click("button[type='submit']")
      .end();
  }
};