最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Cypress - Compare equality of two inputs - Stack Overflow

programmeradmin0浏览0评论

Using Cypress (just started), I can't find a way to assert the equality of text in the two input boxes as in the picture. The use case is that when a user sets a pickup location, by default the same location should appear in the drop off box.

To test the above, I wrote this code:

  cy.get('input#dropFtsAutoplete').should("have.value" , cy.get('input#ftsAutoplete'));

Correctly, Cypress plains with the following error:

Error: AssertionError: expected '' to have value { Object (chainerId, firstCall) }, but the value was 'Manchester Airport (MAN), Manchester, United Kingdom'

What am I missing?

Using Cypress (just started), I can't find a way to assert the equality of text in the two input boxes as in the picture. The use case is that when a user sets a pickup location, by default the same location should appear in the drop off box.

To test the above, I wrote this code:

  cy.get('input#dropFtsAutoplete').should("have.value" , cy.get('input#ftsAutoplete'));

Correctly, Cypress plains with the following error:

Error: AssertionError: expected '' to have value { Object (chainerId, firstCall) }, but the value was 'Manchester Airport (MAN), Manchester, United Kingdom'

What am I missing?

Share Improve this question edited Feb 22, 2018 at 8:02 sdicola asked Feb 21, 2018 at 16:20 sdicolasdicola 9624 gold badges13 silver badges33 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 6

In order to achieve this just follow the Cypress FAQ:

cy.get('input#ftsAutoplete').invoke('val').then(pickUpLocation => {
        cy.get('input#dropFtsAutoplete').should('have.value', pickUpLocation)
    })

I think there's a couple of ways of doing this (selecting multiple elements and testing the bination).

The way I've been doing it is something like

cy.get('input#ftsAutoplete').then(ftsElement => {
  cy.get('input#dropFtsAutoplete').should('have.value', ftsElement.textContent.trim())
})

Essentially, cypress mand are asynchronous, so you can handle them in a similar way to promises.

You may have to fiddle with the exact syntax for getting the text value.

发布评论

评论列表(0)

  1. 暂无评论