File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
packages/page-objects/src Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ import { HTMLElement, PageObject } from "@assert-equals/dappdriver";
22import { Connect } from "@assert-equals/dappdriver/wallet" ;
33
44export class Dapp extends PageObject {
5- private readonly providerButtton : ( ) => HTMLElement = ( ) : HTMLElement =>
6- new HTMLElement ( "#provider" ) ;
75 private readonly accountsLabel : ( ) => HTMLElement = ( ) : HTMLElement =>
86 new HTMLElement ( "#accounts" ) ;
97 private readonly connectButton : ( ) => HTMLElement = ( ) : HTMLElement =>
@@ -13,10 +11,6 @@ export class Dapp extends PageObject {
1311 super ( "http://localhost:3000/" , "E2E Test Dapp" ) ;
1412 }
1513
16- async useProvider ( ) : Promise < void > {
17- return await this . providerButtton ( ) . click ( ) ;
18- }
19-
2014 async getAccounts ( ) : Promise < string > {
2115 return await this . accountsLabel ( ) . getText ( ) ;
2216 }
You can’t perform that action at this time.
0 commit comments