[Vuejs]-Getting v-text-field value with xpath in Vuejs (with nightwatch)

0👍

Had to import chai, but this finally worked:

  .getValue('//div[contains(@class, "input-group--text-field")]//input[@aria-label="Issue Date"]', function(result) {
    expect(result.value).to.equal('2017-10-17')
  })

Leave a comment