Currently, I’m filling out the form on a site with the following:
browser.fill(‘form[firstname]’, ‘Mabel’)
browser.fill(‘form[email]’, ‘hi@hi.com’)
browser.select(‘form[color]’, ‘yellow’)
But the form gets filled out the form sequentially, one after the other. Is there a way to fill out the form all at once?
Thank you and will be sure to vote up and accept the answer!