Fix e2e tests (#11656)
After @bosiraphael's updates on the table, cells are duplicated when they get the hover/focus. Playwright has a hard time finding which element to click on. I dislike my solution because it doesn't mimic how a real user would use the application, but I couldn't find a better solution that wasn't flaky.
This commit is contained in:
committed by
GitHub
parent
f8b9e4d780
commit
826889715b
@ -118,7 +118,7 @@ export class WorkflowVisualizerPage {
|
||||
.getByTestId(`row-id-${this.workflowId}`)
|
||||
.getByRole('link', { name: this.workflowName });
|
||||
|
||||
await workflowLink.click();
|
||||
await workflowLink.click({ force: true });
|
||||
|
||||
await this.waitForWorkflowVisualizerLoad();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user