Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added delay after typing in Cypress test #4168

Merged
merged 23 commits into from
Jun 29, 2021
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
870de7e
added delay after typing
NandanAnantharamu Apr 26, 2021
88aa088
Merge branch 'release' into test/fixApitest
NandanAnantharamu Apr 28, 2021
ac7122e
updated method
NandanAnantharamu Apr 28, 2021
7ceb162
updated type in test
NandanAnantharamu Apr 28, 2021
7286d00
Merge branch 'release' into test/fixApitest
NandanAnantharamu Apr 28, 2021
a5c7ccd
updated common method
NandanAnantharamu Apr 28, 2021
f407b3f
Merge branch 'release' into test/fixApitest
NandanAnantharamu Apr 30, 2021
ace9500
Merge branch 'release' into test/fixApitest
NandanAnantharamu Apr 30, 2021
2d0d4ff
Merge branch 'release' into test/fixApitest
NandanAnantharamu May 3, 2021
c080731
Merge branch 'release' into test/fixApitest
NandanAnantharamu May 28, 2021
15c8da3
Merge branch 'release' into test/fixApitest
NandanAnantharamu May 31, 2021
b7c6ab6
Added wait between CreationOfUniqueAPIcheck()
arslanhaiderbuttar Jun 1, 2021
2d0b1e6
Merge branch 'release' into test/fixApitest
NandanAnantharamu Jun 2, 2021
03323f8
Merge branch 'test/fixApitest' of https://github.com/appsmithorg/apps…
NandanAnantharamu Jun 2, 2021
fefe5b1
Merge branch 'release' into test/fixApitest
NandanAnantharamu Jun 5, 2021
aebbc04
Merge branch 'release' into test/fixApitest
NandanAnantharamu Jun 10, 2021
fbf36bd
Merge branch 'release' into test/fixApitest
mohanarpit Jun 11, 2021
8ea482f
Merge branch 'release' into test/fixApitest
NandanAnantharamu Jun 14, 2021
795a485
Merge branch 'test/fixApitest' of https://github.com/appsmithorg/apps…
NandanAnantharamu Jun 14, 2021
36ce7d9
Merge branch 'release' into test/fixApitest
NandanAnantharamu Jun 15, 2021
af2fae6
Merge branch 'release' into test/fixApitest
NandanAnantharamu Jun 29, 2021
b29a0e4
Updated API name
NandanAnantharamu Jun 29, 2021
127f404
Upated spec to handle retry
NandanAnantharamu Jun 29, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updated common method
  • Loading branch information
NandanAnantharamu committed Apr 28, 2021
commit a5c7ccd7d2f8b87380c181d458d0c3e879ae9dd0
3 changes: 1 addition & 2 deletions app/client/cypress/support/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -862,8 +862,7 @@ Cypress.Commands.add("CreationOfUniqueAPIcheck", (apiname) => {
.wait(500)
.focus()
.type(apiname, { force: true, delay: 500 })
.should("have.value", apiname)
.blur();
.should("have.value", apiname);
cy.get(".error-message").should(($x) => {
console.log($x);
expect($x).contain(apiname.concat(" is already being used."));
Expand Down