|
|
|
@ -47,11 +47,11 @@ export class SelectOptionCellPageObject extends BasePage {
|
|
|
|
|
|
|
|
|
|
if (index === -1) { |
|
|
|
|
const selectOption = this.rootPage.getByTestId(`select-option-${columnHeader}-undefined`).getByText(option); |
|
|
|
|
await selectOption.scrollIntoViewIfNeeded(); |
|
|
|
|
await selectOption.waitFor({ state: 'visible' }); |
|
|
|
|
await selectOption.click(); |
|
|
|
|
} else { |
|
|
|
|
const selectOption = this.rootPage.getByTestId(`select-option-${columnHeader}-${index}`).getByText(option); |
|
|
|
|
await selectOption.scrollIntoViewIfNeeded(); |
|
|
|
|
await selectOption.waitFor({ state: 'visible' }); |
|
|
|
|
await selectOption.click(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|