File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11build
2+ .claude
23** report
34** results **
45dist
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
2828### Preferable code style
2929
30301 . Page-object and util classes
31-
3231 1 . ✔ Class declaration using dependency injection (inversify library)
3332
3433 ```
@@ -38,7 +37,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
3837 ```
3938
4039 2. Public methods
41-
4240 - ✔ Declare public methods without "public "keyword
4341 - ✔ Add Logger.debug() inside method to log its name (with optional message)
4442
@@ -51,7 +49,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
5149 ```
5250
5351 3. Locators
54-
5552 - ✔ For static locators - private static readonly fields type of By
5653
5754 ```
@@ -105,7 +102,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
105102 ```
106103
1071042. Mocha framework
108-
109105 - ✔ TDD framework (`suite()`, `test()`)
110106 - ✔ Inject class instances, declare all test data inside test `suit()` function to avoid unnecessary code execution if test suit will not be run
111107
@@ -122,7 +118,6 @@ Automated lint checking and code format performs with ESLint and Prettier tools
122118 - ✔ Use test [./constants](constants) to make test flexible
123119
1241203. Packages
125-
126121 1. Add packages as dev dependencies
127122 2. If any changes re-create package-lock.json before push
128123
Original file line number Diff line number Diff line change @@ -227,12 +227,12 @@ export class Workspaces {
227227 }
228228
229229 private getActionsLocator ( workspaceName : string ) : By {
230- return By . xpath ( `${ this . getWorkspaceListItemLocator ( workspaceName ) . value } /td/button[@aria-label='Actions']` ) ;
230+ return By . xpath ( `${ this . getWorkspaceListItemLocator ( workspaceName ) . value } /td/button[@aria-label='Actions for ${ workspaceName } ']` ) ;
231231 }
232232
233233 /* private getExpandedActionsLocator(workspaceName: string): By {
234234 return By.xpath(
235- `${this.getWorkspaceListItemLocator(workspaceName).value}//button[@aria -label='Actions' and @aria-expanded='true']`
235+ `${this.getWorkspaceListItemLocator(workspaceName).value}//button[@aria -label='Actions for ${workspaceName} ' and @aria-expanded='true']`
236236 );
237237 }*/
238238
You can’t perform that action at this time.
0 commit comments