Skip to content

Commit

Permalink
Increase timout for alias to stabilize hummingbird tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jolelievre committed Aug 29, 2024
1 parent d7cae6e commit adc8314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/UI/pages/FO/classic/checkout/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,7 @@ class CheckoutPage extends FOBasePage {
* @returns {Promise<void>}
*/
async fillAddressForm(page: Page, address: FakerAddress): Promise<void> {
if (await this.elementVisible(page, this.addressStepAliasInput)) {
if (await this.elementVisible(page, this.addressStepAliasInput, 500)) {
await this.setValue(page, this.addressStepAliasInput, address.alias);
}
await this.setValue(page, this.addressStepPhoneInput, address.phone);
Expand Down

0 comments on commit adc8314

Please sign in to comment.