Increase timeout to fix flaky test
This commit is contained in:
parent
9b5ff7488a
commit
2e7f660f61
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ export class VehicleSelectionPage extends BasePage {
|
|||
await this.yearDropdown.selectOption(vehicleDetails.year);
|
||||
await this.yearDropdown.press('Tab');
|
||||
await this.makeDropdown.selectOption(vehicleDetails.make);
|
||||
await expect(this.modelDropdown).toBeEditable({ timeout: 5000 });
|
||||
await expect(this.modelDropdown).toBeEditable({ timeout: 6000 });
|
||||
await this.makeDropdown.press('Tab');
|
||||
await this.modelDropdown.selectOption(vehicleDetails.model);
|
||||
await expect(this.styleDropdown).toBeEditable({ timeout: 2000 });
|
||||
|
|
|
|||
Loading…
Reference in a new issue