| Index: tools/telemetry/telemetry/page/page_test.py
|
| diff --git a/tools/telemetry/telemetry/page/page_test.py b/tools/telemetry/telemetry/page/page_test.py
|
| index 4ae67b49eb162a5b4456c4580e5b07775ace255c..55eef74b044d9ce9b659fea25b0efff2f5580f9d 100644
|
| --- a/tools/telemetry/telemetry/page/page_test.py
|
| +++ b/tools/telemetry/telemetry/page/page_test.py
|
| @@ -297,7 +297,8 @@ class PageTest(command_line.Command):
|
| def RunPage(self, page, tab, results):
|
| # Run actions.
|
| interactive = self.options and self.options.interactive
|
| - action_runner = action_runner_module.ActionRunner(tab)
|
| + action_runner = action_runner_module.ActionRunner(
|
| + tab, skip_waits=page.skip_waits)
|
| self.WillRunActions(page, tab)
|
| if interactive:
|
| action_runner.PauseInteractive()
|
| @@ -317,7 +318,8 @@ class PageTest(command_line.Command):
|
|
|
| Runs the 'navigate_steps' page attribute as a compound action.
|
| """
|
| - action_runner = action_runner_module.ActionRunner(tab)
|
| + action_runner = action_runner_module.ActionRunner(
|
| + tab, skip_waits=page.skip_waits)
|
| page.RunNavigateSteps(action_runner)
|
|
|
| def IsExiting(self):
|
|
|