'--disable-notifications',
// Login into a web site (desktop web application).
web.open('http://example.org');
web.type('id=username', 'USERNAME');
web.type('id=password', 'PASSWORD');
web.assertTitle('TITLE');
// Get value from a data base and validate that it matches the one we see on the screen.
db.setConnectionString('Driver={SQL Server};Server=DESKTOP-NAME\\SQLEXPRESS;Database=db;');
var userEmailDb = db.executeQuery("SELECT email FROM users WHERE username = 'username';");
var userEmailEl = web.getText("id=userEmail");
assert.equal(userEmailEl, userEmailDb);
// Launch native application running on a mobile device, click a button, validate that user is logged in.
web.click('//*[@id="profile"]');
web.assertText('id=user_email', userEmailDb);