diff --git a/src/workers/CommandorPage.js b/src/workers/CommandorPage.js index 04bfa4d..4ef1a4c 100644 --- a/src/workers/CommandorPage.js +++ b/src/workers/CommandorPage.js @@ -201,10 +201,10 @@ class CommandorPage { if (!this.isNameInput) { await page.locator(LAST_NAME).focus() await delay(getRandomWaitTime()) - await page.locator(LAST_NAME).fill(this.contact.lastName) + await page.locator(LAST_NAME).fill(this.contact.firstName) await page.locator(FIRST_NAME).focus() await delay(getRandomWaitTime()) - await page.locator(FIRST_NAME).fill(this.contact.firstName) + await page.locator(FIRST_NAME).fill(this.contact.lastName) this.isNameInput = true } }