How to use the nightwatch-api.client.getText function in nightwatch-api

To help you get started, we’ve selected a few nightwatch-api examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github merland / seedpicker / step_definitions / dice-steps.js View on Github external
Then(/^the last word of the phrase should be the one word in the word list$/, async function () {
    let phrase = "";
    let wordRow = "";

    await browser.getText("#phrase", function (result) {
        phrase = result.value
    })

    let lastWord = phrase.trim().split(" ").pop()
    expect(lastWord.length).to.be.gt(0)

    await browser.getText("#word_table > tr", function (result) {
        wordRow = result.value
    })
    let columns = wordRow.trim().split(" ")
    let word = columns[11]

    expect(word).to.not.equal("")
    expect(word).to.not.equal("undefined")
    expect(word).to.equal(lastWord)
});
github merland / seedpicker / step_definitions / dice-steps.js View on Github external
Then(/^the last word of the phrase should be the one word in the word list$/, async function () {
    let phrase = "";
    let wordRow = "";

    await browser.getText("#phrase", function (result) {
        phrase = result.value
    })

    let lastWord = phrase.trim().split(" ").pop()
    expect(lastWord.length).to.be.gt(0)

    await browser.getText("#word_table > tr", function (result) {
        wordRow = result.value
    })
    let columns = wordRow.trim().split(" ")
    let word = columns[11]

    expect(word).to.not.equal("")
    expect(word).to.not.equal("undefined")
    expect(word).to.equal(lastWord)
});
Then(/^the input field number (\d+) and onward should be disabled$/, async function (firstDisabled) {

nightwatch-api

[![npm version](https://badge.fury.io/js/nightwatch-api.svg)](https://badge.fury.io/js/nightwatch-api) [![Build Status](https://github.com/mucsi96/nightwatch-api/workflows/Build/badge.svg?branch=master)](https://github.com/mucsi96/nightwatch-api/actions)

MIT
Latest version published 3 years ago

Package Health Score

51 / 100
Full package analysis

Similar packages