| Index: telemetry/telemetry/internal/actions/seek_unittest.py
|
| diff --git a/telemetry/telemetry/internal/actions/seek_unittest.py b/telemetry/telemetry/internal/actions/seek_unittest.py
|
| index 80b9689bc2f3a995ffde1cf262365e06407b611b..9f6e3fec36b53361c0b7ece36808b3b124a571a7 100644
|
| --- a/telemetry/telemetry/internal/actions/seek_unittest.py
|
| +++ b/telemetry/telemetry/internal/actions/seek_unittest.py
|
| @@ -19,7 +19,9 @@ class SeekActionTest(tab_test_case.TabTestCase):
|
| tab_test_case.TabTestCase.setUp(self)
|
| self.Navigate('video_test.html')
|
|
|
| - @decorators.Disabled('linux') # crbug.com/418577
|
| + # https://github.com/catapult-project/catapult/issues/3099 (Android)
|
| + # crbug.com/418577 (Linux)
|
| + @decorators.Disabled('android', 'linux')
|
| def testSeekWithNoSelector(self):
|
| """Tests that with no selector Seek action seeks first media element."""
|
| action = seek.SeekAction(seconds=1, timeout_in_seconds=5)
|
| @@ -29,7 +31,9 @@ class SeekActionTest(tab_test_case.TabTestCase):
|
| self.assertTrue(self._tab.EvaluateJavaScript(VIDEO_1_SEEKED_CHECK))
|
| self.assertFalse(self._tab.EvaluateJavaScript(AUDIO_1_SEEKED_CHECK))
|
|
|
| - @decorators.Disabled('linux') # crbug.com/418577
|
| + # https://github.com/catapult-project/catapult/issues/3099 (Android)
|
| + # crbug.com/418577 (Linux)
|
| + @decorators.Disabled('android', 'linux')
|
| def testSeekWithVideoSelector(self):
|
| """Tests that Seek action seeks video element matching selector."""
|
| action = seek.SeekAction(seconds=1, selector='#video_1',
|
|
|