| Index: tools/telemetry/telemetry/internal/actions/action_runner_unittest.py
|
| diff --git a/tools/telemetry/telemetry/internal/actions/action_runner_unittest.py b/tools/telemetry/telemetry/internal/actions/action_runner_unittest.py
|
| index 08183fa1e2a1ac29aea10e28cef9a55f1d8948b6..edee114a473240b92cd49c6868bfaaf485ea904a 100644
|
| --- a/tools/telemetry/telemetry/internal/actions/action_runner_unittest.py
|
| +++ b/tools/telemetry/telemetry/internal/actions/action_runner_unittest.py
|
| @@ -184,7 +184,8 @@ class ActionRunnerTest(tab_test_case.TabTestCase):
|
| action_runner.ClickElement('#notfound')
|
| self.assertRaises(exceptions.EvaluateException, WillFail)
|
|
|
| - @decorators.Disabled('android', 'debug') # crbug.com/437068
|
| + @decorators.Disabled('android', 'debug', # crbug.com/437068
|
| + 'chromeos') # crbug.com/483212
|
| def testTapElement(self):
|
| self.Navigate('page_with_clickables.html')
|
| action_runner = action_runner_module.ActionRunner(self._tab,
|
| @@ -207,7 +208,8 @@ class ActionRunnerTest(tab_test_case.TabTestCase):
|
| action_runner.TapElement('#notfound')
|
| self.assertRaises(exceptions.EvaluateException, WillFail)
|
|
|
| - @decorators.Disabled('android') # crbug.com/437065.
|
| + @decorators.Disabled('android', # crbug.com/437065.
|
| + 'chromeos') # crbug.com/483212.
|
| def testScroll(self):
|
| if not page_action.IsGestureSourceTypeSupported(
|
| self._tab, 'touch'):
|
| @@ -231,7 +233,8 @@ class ActionRunnerTest(tab_test_case.TabTestCase):
|
| self.assertTrue(action_runner.EvaluateJavaScript(
|
| 'document.body.scrollLeft') > 75)
|
|
|
| - @decorators.Disabled('android') # crbug.com/437065.
|
| + @decorators.Disabled('android', # crbug.com/437065.
|
| + 'chromeos') # crbug.com/483212.
|
| def testSwipe(self):
|
| if not page_action.IsGestureSourceTypeSupported(
|
| self._tab, 'touch'):
|
|
|