-
Notifications
You must be signed in to change notification settings - Fork 62
/
Kiểm thử đăng nhập với gmail cypress
47 lines (43 loc) · 1.2 KB
/
Kiểm thử đăng nhập với gmail cypress
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
37
38
39
40
41
42
43
44
45
46
47
describe('Đăng nhập với gmail hoclieu.sachmem.vn khi chưa đăng nhập tài khoản google', function() {
it('Đi đến trang', function() {
cy.visit('https://accounts.sachmem.vn/users/sign_in')
})
it("Vào phần 'Đăng nhập'",function() {
cy.contains('Đăng nhập')
.should('be.visible')
})
it('Nhập email', function() {
cy.get('#user_email')
.type('[email protected]')
.should('has.value', '[email protected]')
})
it('Nhập password', function() {
cy.get('#user_password')
.type('154311998')
.should('has.value', '154311998')
})
it('nhớ tài khoản', function() {
cy.get('#user_remember_me').check('1')
})
it('"Google"', function() {
cy.contains('Google').should('be.visitble')
})
it('Nhập tài khoản gmail', function() {
cy.get('[type="email"]')
.type('main_user')
.should('has.value', 'mail_user')
})
it("Ấn 'Next'",function() {
cy.contains('Next')
.should('be.visible')
})
it('Nhập mật khẩu gmail', function() {
cy.get('[type="password"]')
.type('main_password')
.should('has.value', 'mail_password')
})
it("Ấn 'Next'",function() {
cy.contains('Next')
.should('be.visible')
})
});