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

Unified Diff: telemetry/telemetry/internal/actions/action_runner_unittest.py

Issue 2236493003: [catapult android trybot] Make Telemetry tests run on Android (Closed) Base URL: git@github.com:catapult-project/catapult.git@master
Patch Set: Add stack traces and more logging Created 4 years 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
Index: telemetry/telemetry/internal/actions/action_runner_unittest.py
diff --git a/telemetry/telemetry/internal/actions/action_runner_unittest.py b/telemetry/telemetry/internal/actions/action_runner_unittest.py
index 7b16f41d9fc7219f2e2defff4f1b70bed56ebc7b..cde8a8834822faaa51e24335e62ffbb36e806721 100644
--- a/telemetry/telemetry/internal/actions/action_runner_unittest.py
+++ b/telemetry/telemetry/internal/actions/action_runner_unittest.py
@@ -112,6 +112,9 @@ class ActionRunnerMeasureMemoryTest(tab_test_case.TabTestCase):
class ActionRunnerTest(tab_test_case.TabTestCase):
+
+ # https://github.com/catapult-project/catapult/issues/3099
+ @decorators.Disabled('android')
def testExecuteJavaScript(self):
action_runner = action_runner_module.ActionRunner(self._tab,
skip_waits=True)
@@ -166,6 +169,8 @@ class ActionRunnerTest(tab_test_case.TabTestCase):
action_runner.WaitForJavaScriptCondition(
'document.location.pathname === "/page_with_link.html"')
+ # https://github.com/catapult-project/catapult/issues/3099
+ @decorators.Disabled('android')
def testWait(self):
action_runner = action_runner_module.ActionRunner(self._tab)
self.Navigate('blank.html')
@@ -180,6 +185,8 @@ class ActionRunnerTest(tab_test_case.TabTestCase):
action_runner.Wait(0.2)
self.assertEqual(102, self._tab.EvaluateJavaScript('window.testing'))
+ # https://github.com/catapult-project/catapult/issues/3099
+ @decorators.Disabled('android')
def testWaitForJavaScriptCondition(self):
action_runner = action_runner_module.ActionRunner(self._tab,
skip_waits=True)
@@ -194,6 +201,8 @@ class ActionRunnerTest(tab_test_case.TabTestCase):
'window.testing == 220', timeout_in_seconds=0.1)
self.assertEqual(220, self._tab.EvaluateJavaScript('window.testing'))
+ # https://github.com/catapult-project/catapult/issues/3099
+ @decorators.Disabled('android')
def testWaitForElement(self):
action_runner = action_runner_module.ActionRunner(self._tab,
skip_waits=True)
@@ -295,7 +304,8 @@ class ActionRunnerTest(tab_test_case.TabTestCase):
action_runner.TapElement('#notfound')
self.assertRaises(exceptions.EvaluateException, WillFail)
-
+ # https://github.com/catapult-project/catapult/issues/3099
+ @decorators.Disabled('android')
def testScrollToElement(self):
self.Navigate('page_with_swipeables.html')
action_runner = action_runner_module.ActionRunner(self._tab,
« no previous file with comments | « telemetry/telemetry/core/tracing_controller_unittest.py ('k') | telemetry/telemetry/internal/actions/drag_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698