forked from codeceptjs/CodeceptJS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgithub_test.js
36 lines (32 loc) · 977 Bytes
/
github_test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/// <reference path="./steps.d.ts" />
Feature('GitHub');
Before((Smth) => {
Smth.openGitHub();
});
Scenario('search', (I) => {
I.amOnPage('https://github.com/search');
I.fillField('Search GitHub', 'CodeceptJS');
I.pressKey('Enter');
I.see('Codeception/CodeceptJS', 'a');
});
Scenario('signin', (I) => {
I.click('Sign in');
I.say('it should not enter');
I.see('Sign in to GitHub');
I.fillField('Username or email address', '[email protected]');
I.fillField('Password', '123456');
I.click('Sign in');
I.see('Incorrect username or password.', '.flash-error');
});
Scenario('register', (I) => {
within('.js-signup-form', function () {
I.fillField('user[login]', 'User');
I.fillField('user[email]', '[email protected]');
I.fillField('user[password]', '[email protected]');
I.fillField('q', 'aaa');
I.click('button');
});
I.see('There were problems creating your account.');
I.click('Explore');
I.seeInCurrentUrl('/explore');
});