Login to Dropbox

This test logs in to Dropbox, the popular cloud storage solution.

Cloud Computing
SaaS
React
// 🌐 Lets load up the website
I.goTo("https://www.dropbox.com/")

// ⏰ And see if it loads
I.see("Dropbox");

// 😎 Lets try the login form
I.see("Sign in")
I.click("Sign in")

// 🐱 inboxkitten.com is our opensource
// disposable mail service
I.fill("email", "[email protected]")
I.fill("password", "this-account-does-not-exist")

// 🙏 This is production, lets be nice to Dropbox folks
// and not submit into production
// I.click("Log in")

//
// Interested to do more complex test scripts for your website?
// Head over to - https://uilicious.com
//
Edit