1.6 patches (#2141)

This commit is contained in:
Chenlei Hu
2025-01-03 11:20:25 -05:00
committed by GitHub
parent 9d8633aafa
commit 5972a07cfe
6 changed files with 39 additions and 11 deletions

View File

@@ -152,6 +152,13 @@ export class WorkflowsSidebarTab extends SidebarTab {
await this.page.keyboard.press('Enter')
await this.page.waitForTimeout(300)
}
async insertWorkflow(locator: Locator) {
await locator.click({ button: 'right' })
await this.page
.locator('.p-contextmenu-item-content', { hasText: 'Insert' })
.click()
}
}
export class QueueSidebarTab extends SidebarTab {