Skip to content

Commit

Permalink
url test activate iframe
Browse files Browse the repository at this point in the history
  • Loading branch information
bunsenstraat committed Dec 13, 2024
1 parent 689acb2 commit e647c44
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion apps/remix-ide-e2e/src/tests/url.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,5 +340,17 @@ module.exports = {
.getEditorValue((content) => {
browser.assert.ok(content.indexOf('contract Lock {') !== -1, 'content does contain "contract Lock {"')
})
}
},

'Load remix with an iframe plugin #group4': function (browser: NightwatchBrowser) {
browser
.url('http://127.0.0.1:8080?activate=contract-verification')
.refreshPage()
.waitForElementVisible(
{
selector: '//*[contains(@data-id, "sidePanelSwapitTitle") and text()="Contract Verification"]',
locateStrategy: 'xpath'
}
)
}
}

0 comments on commit e647c44

Please sign in to comment.