re #93070. test for command arguments.

This commit is contained in:
rebornix
2020-07-13 10:52:52 -07:00
parent d17550f4a8
commit 5e96337121
4 changed files with 38 additions and 1 deletions

View File

@@ -89,4 +89,8 @@ export class Notebook {
async executeActiveCell(): Promise<void> {
await this.quickAccess.runCommand('notebook.cell.execute');
}
async executeCellAction(selector: string): Promise<void> {
await this.code.waitAndClick(selector);
}
}