Skip to content

Commit eaf71a6

Browse files
authored
Merge pull request #17373 from rancher/fix_harvester_e2e
fix: harvester e2e test unable to click the version exceed the screen
2 parents a0de101 + 07f9a99 commit eaf71a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cypress/e2e/po/components/labeled-select.po.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default class LabeledSelectPo extends ComponentPo {
1313
}
1414

1515
clickOption(optionIndex: number) {
16-
return this.self().get(`.vs__dropdown-menu .vs__dropdown-option:nth-child(${ optionIndex })`).click();
16+
return this.self().get(`.vs__dropdown-menu .vs__dropdown-option:nth-child(${ optionIndex })`).click({ force: true });
1717
}
1818

1919
clickOptionWithLabel(label: string) {

0 commit comments

Comments
 (0)