| 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 6d858a8455596777fc5b12a7614d85e4f2bf15e1..60912a89172e180ed9c0c26b53b5361742fd9945 100644
|
| --- a/tools/telemetry/telemetry/page/page_test.py
|
| +++ b/tools/telemetry/telemetry/page/page_test.py
|
| @@ -6,7 +6,6 @@ from telemetry.core import command_line
|
|
|
| from telemetry.page import test_expectations
|
| from telemetry.page.actions import action_runner as action_runner_module
|
| -from telemetry.page.actions import interact
|
|
|
|
|
| class Failure(Exception):
|
| @@ -239,7 +238,7 @@ class PageTest(command_line.Command):
|
| action_runner = action_runner_module.ActionRunner(tab)
|
| self.WillRunActions(page, tab)
|
| if interactive:
|
| - action_runner.RunAction(interact.InteractAction())
|
| + action_runner.PauseInteractive()
|
| else:
|
| self._RunMethod(page, self._action_name_to_run, action_runner)
|
| self.DidRunActions(page, tab)
|
|
|