D | base.py | 22 from crossbench.runner.run import Run 71 # run action. 78 def run_blocks(self, run: Run, page: InteractivePage, argument 81 block.run_with(self, run, page) 83 def run_block(self, run, block: ActionBlock) -> None: argument 90 action.run_with(run, self) 92 def wait(self, run: Run, action: i_action.WaitAction) -> None: argument 93 with run.actions("WaitAction", measure=False) as actions: 96 def js(self, run: Run, action: i_action.JsAction) -> None: argument 97 with run.actions("JS", measure=False) as actions: [all …]
|