xxxxxxxxxx
24
1
// ๐ Lets load up the website
2
I.goTo("https://www.dropbox.com/")
3
โ
4
// โฐ And see if it loads
5
I.see("Dropbox");
6
โ
7
// ๐ Lets try the login form
8
I.see("Sign in")
9
I.click("Sign in")
10
โ
11
// ๐ฑ inboxkitten.com is our opensource
12
// disposable mail service
13
I.fill("email", "[email protected]")
14
I.fill("password", "this-account-does-not-exist")
15
โ
16
// ๐ This is production, lets be nice to Dropbox folks
17
// and not submit into production
18
// I.click("Log in")
19
โ
20
//
21
// Interested to do more complex test scripts for your website?
22
// Head over to - https://uilicious.com
23
//
24
โ

SUCCESS!
27s (19s)
1.
I go to "https://www.dropbox.com/" 2.3s
2.
I see "Dropbox" 9.2s
3.
I see "Sign in" 0.1s
4.
I click "Sign in" 1.6s
5.
6.
I fill "password": "this-account-does-not-exist" 2.1s
7.
[end of test]