There was an error while loading. Please reload this page.
1 parent 5212f88 commit c0685adCopy full SHA for c0685ad
generator/template/tests/e2e/app_test.js
@@ -2,6 +2,8 @@ Feature('App');
2
3
Scenario('Open app', (I) => {
4
I.amOnPage('/');
5
+
6
+ I.say('This test will pass if you enabled demo component');
7
I.see('Demo Component', 'h1');
8
I.fillField('First name', 'tester'); // using semantic locators
9
I.fillField('Last name', 'end2end');
@@ -11,5 +13,6 @@ Scenario('Open app', (I) => {
11
13
I.click('Submit');
12
14
I.see('"first_name":"tester"','#result');
15
I.see('"last_name":"end2end"','#result');
16
+ I.say("Now, it's your turn! Use this pause mode to write test on your own!");
17
pause(); // TODO: Add more assertions when paused!
18
});
0 commit comments