xxxxxxxxxx
14
1
I.goTo("https://www.netflix.com/");
2
3
// Close the cookie banner
4
if(I.see$("Netflix and third parties use cookies")){
5
I.click("Accept")
6
}
7
8
// Login
9
I.click("Sign In");
10
I.fill("Email", "[email protected]");
11
I.fill("Password", "password");
12
I.click("Sign in");
13
I.see("Sorry, we can't find an account with this email address.");
14

SUCCESS!
20s (5s)
1.
[start of test]
2.
I go to "https://www.netflix.com/" 1.7s
3.
I see "Netflix and third parties use cookies" 0.1s
4.
I click "Accept"
5.
I click "Sign In"
6.
7.
I fill "Password": "password" 0.5s
8.
I click "Sign in"
9.
I see "Sorry, we can't find an account with this email address." 0.1s
10.
[end of test]