Using the Bright Data scraping browser via the Playwright Python library I wrote the following code snippet:
await page.goto('https://example.com/login/')
await page.fill('input[name="username"]', username)
await page.fill('input[name="password"]', password)
await page.click('button[type="submit"]')
The username fills as expected, but on the password line, the scraping browser halts with the following error:
Error: Forbidden action: password typing is not allowed
I have tried other methods of entering data into the input but it seems like the scraping browser have disabled entering any kind of data into password type input fields.
How can I work around this?