Home
last modified time | relevance | path

Searched refs:WaitForElement (Results 1 – 2 of 2) sorted by relevance

/external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
Daction_runner_unittest.py121 action_runner.WaitForElement('#test1', timeout_in_seconds=0.1)
122 action_runner.WaitForElement(text='foo', timeout_in_seconds=0.1)
123 action_runner.WaitForElement(
131 action_runner.WaitForElement('#test2', timeout_in_seconds=0.1)
136 action_runner.WaitForElement(text='bar', timeout_in_seconds=0.1)
143 action_runner.WaitForElement(
158 action_runner.WaitForElement('#test1', timeout_in_seconds=0.2)
159 def WaitForElement(): function
160 action_runner.WaitForElement(text='oo', timeout_in_seconds=0.2)
161 self.assertRaises(exceptions.TimeoutException, WaitForElement)
/external/chromium-trace/catapult/telemetry/telemetry/page/
Daction_runner.py188 def WaitForElement(self, selector=None, text=None, element_function=None, member in ActionRunner