add +33 to phone number

This commit is contained in:
2023-04-01 11:36:29 +02:00
parent d1970470c9
commit 4487b5cf50
+1 -1
View File
@@ -184,7 +184,7 @@ class CommandorPage {
if (!page.isClosed()) {
if (!this.isPhoneInput) {
await page.locator(PHONE_NUMBER).focus();
await page.locator(PHONE_NUMBER).fill("0" + this.contact.phoneNumber);
await page.locator(PHONE_NUMBER).fill("+33" + this.contact.phoneNumber);
this.isPhoneInput = true;
}
}