同时填写多个表单域

时间:2017-12-08 17:21:31

标签: python selenium phantomjs splinter

我正在使用Splinter在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'
    })

this thread中的一张海报建议使用browser.fill_form(dict)一次填写表单,但我仍然看到字段值一个接一个地填充。我做错了什么,或者Splinter不支持这个功能?如果是后者,我怎么能实现这个功能?

0 个答案:

没有答案