Skip to content

Commit

Permalink
update module explorer page objects
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghislain89 committed Oct 11, 2023
1 parent 451861a commit 069a019
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export default class ModuleExplorerPage {
}

async openDeployedContract(moduleName: string, chain: string): Promise<void> {
await this.page.getByRole('paragraph', { name: moduleName }).click();
await this.page.getByRole('button', { name: chain }).click();
await this.page.getByRole('treeitem', { name: moduleName }).click();
await this.page.getByRole('button', { name: chain, exact: true}).click();
}

async getEditor(): Promise<Locator> {
Expand Down

0 comments on commit 069a019

Please sign in to comment.