Skip to content

Commit

Permalink
adding logging to method
Browse files Browse the repository at this point in the history
  • Loading branch information
cmd-ob committed Nov 26, 2024
1 parent 4d5cc18 commit f695712
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/e2e/page-objects/pages/account-list-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ class AccountListPage {
*/
async changeLabelFromAccountDetailsModal(newLabel: string): Promise<void> {
await this.driver.waitForSelector(this.editableLabelButton);
console.log(`Account details modal opened, changing account label to: ${newLabel}`);
await this.driver.clickElement(this.editableLabelButton);
await this.driver.fill(this.editableLabelInput, newLabel);
await this.driver.clickElement(this.saveAccountLabelButton);
Expand Down

0 comments on commit f695712

Please sign in to comment.