| Index: chrome/test/functional/chromeos_login.py
|
| diff --git a/chrome/test/functional/chromeos_login.py b/chrome/test/functional/chromeos_login.py
|
| index b2f42e78a13fc67121d305d09066c044d6055e18..babecca088983b3634f3134605d0c49e951e4704 100755
|
| --- a/chrome/test/functional/chromeos_login.py
|
| +++ b/chrome/test/functional/chromeos_login.py
|
| @@ -31,6 +31,13 @@ class ChromeosLogin(pyauto.PyUITest):
|
| """
|
| return self.GetPrivateInfo()[account_type]
|
|
|
| + def testExecuteJavascriptInOOBEWebUI(self):
|
| + """Test that javascript can be executed at the login page."""
|
| + msg = 'test success'
|
| + ret = self.ExecuteJavascriptInOOBEWebUI(
|
| + 'window.domAutomationController.send("%s");' % msg)
|
| + self.assertEqual(ret, msg)
|
| +
|
| def testGoodLogin(self):
|
| """Test that login is successful with valid credentials."""
|
| credentials = self._ValidCredentials()
|
|
|