Skip to content

Commit

Permalink
chore(test): incorrect elemented called on enable (#6807)
Browse files Browse the repository at this point in the history
Signed-off-by: Vladimir Lazar <vlazar@redhat.com>
  • Loading branch information
cbr7 committed Apr 16, 2024
1 parent b9a4656 commit 9321f73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/playwright/src/model/pages/extension-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class ExtensionPage extends SettingsPage {
async enableExtension(): Promise<this> {
if ((await this.status.innerText()) === 'ACTIVE') return this;

await this.disableButton.click();
await this.enableButton.click();
await playExpect(this.status).toHaveText('ACTIVE');
return this;
}
Expand Down

0 comments on commit 9321f73

Please sign in to comment.