mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 19:16:41 +00:00
fix: Integrated new import csv changes to tests
This commit is contained in:
@@ -23,7 +23,11 @@ export class ImportTemplatePage extends BasePage {
|
||||
const rowCount = await tr.count();
|
||||
const tableList: string[] = [];
|
||||
for (let i = 0; i < rowCount; i++) {
|
||||
const tableName = await getTextExcludeIconText(tr.nth(i));
|
||||
const tableName = await this.get()
|
||||
.locator(`.ant-collapse-header`)
|
||||
.nth(i)
|
||||
.locator('input[type="text"]')
|
||||
.inputValue();
|
||||
tableList.push(tableName);
|
||||
}
|
||||
return tableList;
|
||||
|
||||
Reference in New Issue
Block a user