Skip to content

Commit 647f51d

Browse files
committed
Fix playwright test
1 parent 0b80218 commit 647f51d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

prototypes/basic/tests/helpers/mapping_page.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class MappingPage {
3939
setMapping = async(columnName, fieldName) => {
4040
let cols = await this.getColumnNames()
4141
let idx = cols.findIndex((x)=>x == columnName);
42-
await this.p.locator(`[name='${idx}']`).selectOption(fieldName)
42+
await this.p.locator(`[name='field-${idx}']`).selectOption(fieldName)
4343
}
4444

4545
submit = async() => {

0 commit comments

Comments
 (0)