pull/5370/head
bunsenstraat 2 years ago committed by Aniket
parent 9f585dc718
commit ef56b5c63b
  1. 6
      apps/remix-ide-e2e/src/tests/search.test.ts

@ -4,7 +4,7 @@ import { NightwatchBrowser } from 'nightwatch'
import init from '../helpers/init' import init from '../helpers/init'
module.exports = { module.exports = {
'@disbled': true, '@disabled': true,
before: function (browser: NightwatchBrowser, done: VoidFunction) { before: function (browser: NightwatchBrowser, done: VoidFunction) {
init(browser, done, 'http://127.0.0.1:8080', true) init(browser, done, 'http://127.0.0.1:8080', true)
}, },
@ -166,19 +166,15 @@ module.exports = {
}, },
'Should hide button when edited content is the same #group2 #flaky': function (browser: NightwatchBrowser) { 'Should hide button when edited content is the same #group2 #flaky': function (browser: NightwatchBrowser) {
browser.waitForElementVisible('*[data-id="remixIdeSidePanel"]') browser.waitForElementVisible('*[data-id="remixIdeSidePanel"]')
.saveScreenshot('./reports/screenshots/search_replace_test_0.png')
.addFile('test.sol', { content: '123' }) .addFile('test.sol', { content: '123' })
.click('*[plugin="search"]') .click('*[plugin="search"]')
.waitForElementVisible('*[id="search_input"]') .waitForElementVisible('*[id="search_input"]')
.saveScreenshot('./reports/screenshots/search_replace_test.png')
.waitForElementVisible('*[data-id="toggle_replace"]') .waitForElementVisible('*[data-id="toggle_replace"]')
.click('*[data-id="toggle_replace"]') .click('*[data-id="toggle_replace"]')
.saveScreenshot('./reports/screenshots/search_replace_test_2.png')
.clearValue('*[id="search_input"]') .clearValue('*[id="search_input"]')
.setValue('*[id="search_input"]', '123') .setValue('*[id="search_input"]', '123')
.sendKeys('*[id="search_input"]', browser.Keys.ENTER) .sendKeys('*[id="search_input"]', browser.Keys.ENTER)
.waitForElementVisible('*[id="search_replace"]') .waitForElementVisible('*[id="search_replace"]')
.saveScreenshot('./reports/screenshots/search_replace_test_3.png')
.clearValue('*[id="search_replace"]') .clearValue('*[id="search_replace"]')
.setValue('*[id="search_replace"]', '456').pause(1000) .setValue('*[id="search_replace"]', '456').pause(1000)
.click('*[data-id="confirm_replace_label"]').pause(500) .click('*[data-id="confirm_replace_label"]').pause(500)

Loading…
Cancel
Save