I'm using Splinter to automate a basic order form in Python.
browser.fill_form({
'formorder[billing_name]': 'Georges Perec',
'order[email]': 'g.perec@oulip.fr',
'order[tel]': '+ 33 (0)1 53 79 39 46',
'order[billing_address]': 'La place Saint-Sulpice',
'order[billing_city]': 'Paris',
'order[billing_zip]': '75006',
'order[billing_country]': 'FR'
})
One poster in this thread recommended using browser.fill_form(dict) to fill out a form at once, but I'm still seeing the field values get filled in one-by-one. Am I doing something wrong, or does Splinter not support this function? If the latter, how could I achieve this functionality?