Reloadable-input field type -"text" #23398
Unanswered
rsaiyad
asked this question in
Questions and Help
Replies: 1 comment 2 replies
-
For your automation test, do you mimic exactly what you do for manual? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to automate my test caese in Cypress. I have en input field of text i.e. customer Id. After inserting the customer Id other fields i.e. customer's name, adress, telephone etc will be field up automatically if the customer exists in the database. The customer ID that I am using exists in the database and it works fine when I insert the ID manuelly. But when I run the Cypress script it doesn't. Here is my code:
it ('Cutsomer information' , () => {
cy.get('#ID').click().type('1234567')
})
I have even tried with 'enter' but not working.
Is there any idea or any alternative to insert a value which will reload the other fields?
Beta Was this translation helpful? Give feedback.
All reactions