Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7089)

Unified Diff: chrome/test/pyautolib/pyauto.py

Issue 4223001: Add pyauto tests and helper files for system-level testing of Web SQL Databases. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/test/functional
Patch Set: ... Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/functional/notifications.py ('k') | chrome/test/pyautolib/pyautolib.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/pyautolib/pyauto.py
diff --git a/chrome/test/pyautolib/pyauto.py b/chrome/test/pyautolib/pyauto.py
index 60b47280090c34bef4e14c0101304e021a9e5dd6..a152c7e5295868a09b8d46cd719ef97f706dffe4 100644
--- a/chrome/test/pyautolib/pyauto.py
+++ b/chrome/test/pyautolib/pyauto.py
@@ -1596,6 +1596,40 @@ class PyUITest(pyautolib.PyUITestBase, unittest.TestCase):
}
return self._GetResultFromJSONRequest(cmd_dict, windex=windex)
+ def CallJavascriptFunc(self, function, args=[], tab_index=0, windex=0):
+ """Executes a script which calls a given javascript function.
+
+ The invoked javascript function must send a result back via the
+ domAutomationController.send function, or this function will never return.
+
+ Defaults to first tab in first window.
+
+ Args:
+ function: name of the function
+ args: list of all the arguments to pass into the called function. These
+ should be able to be converted to a string using the |str| function.
+ tab_index: index of the tab within the given window
+ windex: index of the window
+
+ Returns:
+ a string that was sent back via the domAutomationController.send method
+ """
+ # Convert the given arguments for evaluation in a javascript statement.
+ converted_args = []
+ for arg in args:
+ # If it is a string argument, we need to quote and escape it properly.
+ if type(arg) == type('string') or type(arg) == type(u'unicode'):
+ # We must convert all " in the string to \", so that we don't try
+ # to evaluate invalid javascript like ""arg"".
+ converted_arg = '"' + arg.replace('"', '\\"') + '"'
+ else:
+ # Convert it to a string so that we can use |join| later.
+ converted_arg = str(arg)
+ converted_args += [converted_arg]
+ js = '%s(%s)' % (function, ', '.join(converted_args))
+ logging.debug('Executing javascript: ', js)
+ return self.ExecuteJavascript(js, windex, tab_index)
+
class PyUITestSuite(pyautolib.PyUITestSuiteBase, unittest.TestSuite):
"""Base TestSuite for PyAuto UI tests."""
« no previous file with comments | « chrome/test/functional/notifications.py ('k') | chrome/test/pyautolib/pyautolib.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698