Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafa committed Jul 16, 2024
1 parent 7919077 commit 54749c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/page-objects/apdex/load.page.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class LoadPage extends Page {

async loadInstance(url) {
await super.toggleAirplaneMode('off');
await super.getButton("Custom").click();
await super.getButton('Custom').click();
await this.inputInstanceUrl.setValue(url);
await this.btnSave.click();
}
Expand Down
4 changes: 2 additions & 2 deletions tests/page-objects/apdex/login.page.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ class LoginPage extends Page {
await this.inputUsername.waitForDisplayed();
await this.inputUsername.setValue(username);
await this.inputPassword.setValue(password);
await super.getButton("Login").click();
await super.getButton('Login').click();
if (hasPrivacyPolicy) {
await super.clickDisplayedElem(super.getButton("Accept"));
await super.clickDisplayedElem(super.getButton('Accept'));
}
}

Expand Down

0 comments on commit 54749c6

Please sign in to comment.