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 f463c98 commit f966202Copy full SHA for f966202
1 file changed
packages/databricks-vscode/src/test/e2e/utils/commonUtils.ts
@@ -43,12 +43,12 @@ export async function findViewSection(name: ViewSectionType) {
43
(await (await control?.openView())?.getContent()?.getSections()) ?? [];
44
console.log("Views:", views.length);
45
for (const v of views) {
46
- const title = await v.getTitle();
+ const title = await v.elem.getText();
47
console.log("View title:", title);
48
if (title === null) {
49
continue;
50
}
51
- if (title.toUpperCase() === name) {
+ if (title.toUpperCase().includes(name)) {
52
return v;
53
54
0 commit comments