Skip to content

Commit d4132a2

Browse files
committed
try to fix some wdio tests
1 parent a5e7d02 commit d4132a2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/acceptance/session_test.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const { event } = codeceptjs
44

55
Feature('Session')
66

7-
Scenario('simple session @WebDriverIO @Puppeteer @Playwright', ({ I }) => {
7+
Scenario('simple session @Puppeteer @Playwright', ({ I }) => {
88
I.amOnPage('/info')
99
session('john', () => {
1010
I.amOnPage('/login')
@@ -15,7 +15,7 @@ Scenario('simple session @WebDriverIO @Puppeteer @Playwright', ({ I }) => {
1515
I.seeInCurrentUrl('/info')
1616
})
1717

18-
Scenario('screenshots reflect the current page of current session @Puppeteer @Playwright @WebDriver', async ({ I }) => {
18+
Scenario('screenshots reflect the current page of current session @Puppeteer @Playwright', async ({ I }) => {
1919
I.amOnPage('/')
2020
I.saveScreenshot('session_default_1.png')
2121

@@ -77,7 +77,7 @@ Scenario('Different cookies for different sessions @Playwright @Puppeteer', asyn
7777
I.expectNotEqual(cookies.john, cookies.mary)
7878
})
7979

80-
Scenario('should save screenshot for sessions @WebDriverIO @Puppeteer @Playwright', async function ({ I }) {
80+
Scenario('should save screenshot for sessions @Puppeteer @Playwright', async function ({ I }) {
8181
await I.amOnPage('/form/bug1467')
8282
await I.saveScreenshot('original.png')
8383
await I.amOnPage('/')
@@ -98,7 +98,7 @@ Scenario('should save screenshot for sessions @WebDriverIO @Puppeteer @Playwrigh
9898
await I.expectNotEqual(main_original, session_failed)
9999
})
100100

101-
Scenario('should throw exception and close correctly @WebDriverIO @Puppeteer @Playwright', ({ I }) => {
101+
Scenario('should throw exception and close correctly @Puppeteer @Playwright', ({ I }) => {
102102
I.amOnPage('/form/bug1467#session1')
103103
I.checkOption('Yes')
104104
session('john', () => {
@@ -110,7 +110,7 @@ Scenario('should throw exception and close correctly @WebDriverIO @Puppeteer @Pl
110110
I.amOnPage('/info')
111111
}).fails()
112112

113-
Scenario('async/await @WebDriverIO', ({ I }) => {
113+
Scenario('async/await', ({ I }) => {
114114
I.amOnPage('/form/bug1467#session1')
115115
I.checkOption('Yes')
116116
session('john', async () => {
@@ -121,7 +121,7 @@ Scenario('async/await @WebDriverIO', ({ I }) => {
121121
I.seeCheckboxIsChecked({ css: 'input[value=Yes]' })
122122
})
123123

124-
Scenario('exception on async/await @WebDriverIO @Puppeteer @Playwright', ({ I }) => {
124+
Scenario('exception on async/await @Puppeteer @Playwright', ({ I }) => {
125125
I.amOnPage('/form/bug1467#session1')
126126
I.checkOption('Yes')
127127
session('john', async () => {
@@ -132,7 +132,7 @@ Scenario('exception on async/await @WebDriverIO @Puppeteer @Playwright', ({ I })
132132
I.seeCheckboxIsChecked({ css: 'input[value=Yes]' })
133133
}).throws(/to be checked/)
134134

135-
Scenario('should work with within @WebDriverIO @Puppeteer @Playwright', ({ I }) => {
135+
Scenario('should work with within @Puppeteer @Playwright', ({ I }) => {
136136
I.amOnPage('/form/bug1467')
137137
session('john', () => {
138138
I.amOnPage('/form/bug1467')

0 commit comments

Comments
 (0)