Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mike10ca committed Oct 4, 2023
1 parent fe68a57 commit 76db852
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/pages/create_wallet.pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function typeWalletName(name) {

export function selectNetwork(network, regex = false) {
cy.get(selectNetworkBtn).click()
cy.contains(network).click()
cy.get('li').contains(network).click()

if (regex) {
regex = constants.networks.goerli
Expand Down
1 change: 1 addition & 0 deletions cypress/e2e/pages/owners.pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ export function waitForConnectionStatus() {

export function openAddOwnerWindow() {
cy.get(addOwnerBtn).click()
cy.wait(1000)
cy.get(newOwnerName).should('be.visible')
cy.get(newOwnerAddress).should('be.visible')
}
Expand Down

0 comments on commit 76db852

Please sign in to comment.