We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f08d60 + 10fa10e commit bdb48d8Copy full SHA for bdb48d8
tests/e2e/pageObjects/components/explore-tab.ts
@@ -134,11 +134,11 @@ export class ExploreTab {
134
* @param name A tutorial name
135
*/
136
async deleteTutorialByName(name: string): Promise<void> {
137
- await this.toggleMyTutorialPanel();
138
const deleteTutorialBtn = this.tutorialAccordionButton.withText(name).find(this.cssTutorialDeleteIcon);
139
if (await this.closeEnablementPage.exists) {
140
await t.click(this.closeEnablementPage);
141
}
+ await this.toggleMyTutorialPanel();
142
await t.click(deleteTutorialBtn);
143
await t.click(this.tutorialDeleteButton);
144
0 commit comments