We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56324b6 commit bcd6bd6Copy full SHA for bcd6bd6
test/helper/Puppeteer_test.js
@@ -193,17 +193,6 @@ describe('Puppeteer', function () {
193
.then(() => I.dontSeeElement('//div[@id="step_1"]'))
194
.then(() => I.dontSee('Step One Button'))
195
})
196
-
197
- it('should wait for invisible combined with dontseeElement', async () => {
198
- await I.amOnPage('https://codecept.io/')
199
- await I.waitForVisible('.frameworks')
200
- await I.waitForVisible('[alt="React"]')
201
- await I.waitForVisible('.mountains')
202
- await I._withinBegin('.mountains', async () => {
203
- await I.dontSeeElement('[alt="React"]')
204
- await I.waitForInvisible('[alt="React"]', 2)
205
- })
206
207
208
209
describe('#waitNumberOfVisibleElements', () => {
0 commit comments