We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 975f2b9 commit 650bd95Copy full SHA for 650bd95
tests/e2e/pageObjects/components/browser/tree-view.ts
@@ -89,11 +89,11 @@ export class TreeView {
89
* @param names folder names with sequence of subfolder
90
*/
91
async openTreeFolders(names: string[]): Promise<void> {
92
- let base = `node-item_${names[0]}:`;
+ let base = `node-item_${names[0]}`;
93
await this.clickElementIfNotExpanded(base);
94
if (names.length > 1) {
95
for (let i = 1; i < names.length; i++) {
96
- base = `${base }${names[i]}:`;
+ base = `${base}:${names[i]}:`;
97
98
}
99
0 commit comments