Is it possible to fill all the fields on the page at once instead of one by one?
Right now I have
driver.find_element_by_id('1').send_keys(input1)
driver.find_element_by_id('2').send_keys(input2)
driver.find_element_by_id('3').send_keys(input3)
and it goes one by one taking a while to fill a form.
requestspython module.