如何使用机械化 (python) 在 global_form ListControl 元素中进行选择?

How can you make a selection in a global_form ListControl element using mechanize (python)?

我正在与一家食品银行合作,以帮助他们在有人填写入住表格时自动为新客人创建一个条目。要创建新来宾,必须首先选择外展。这是通过作为全局表单一部分的 ListControl 完成的。

import mechanize
import http.cookiejar

br = mechanize.Browser()
cj = http.cookiejar.LWPCookieJar()
br.set_cookiejar(cj)
br.set_handle_equiv(True)
br.set_handle_gzip(True)
br.set_handle_redirect(True)
br.set_handle_referer(True)
br.set_handle_robots(False)
br.set_handle_refresh(mechanize._http.HTTPRefreshProcessor(), max_time=1)
br.addheaders = [('User-agent', 'Chrome')]


# login

br.open('https://companywebsite.com/login')
br.select_form(nr = 0)
br.form['username'] = 'my_username'
br.form['password'] = 'my_password'
br.submit()


# Deselect the default placeholder value and select the name of the outreach

br.open('https://companywebsite.com/create-new-visit')
br.global_form().find_control(id='outreachSelect').items[0].selected = False
br.global_form().find_control(id='outreachSelect').items[1].selected = True
print(br.global_form().find_control(id='outreachSelect').items)

这是我得到的输出。如您所见,第一项仍处于选中状态。

[<Item name='0' id=None value='0' selected='selected' contents='Select an Outreach' label='Select an Outreach'>, 
<Item name='558' id=None value='558' contents='Company Name' label='Company Name'>]

此屏幕截图显示了网站的外观

为了使“创建新访客”按钮起作用,必须更改“Select 外展”下拉列表

再次查看后,我发现根据该下拉菜单的内容,该网站是 运行 javascript。选择正确的选项后,它会向 https://companywebsite.com/create-new-visit/set-outreach/?id=config_1.

发出请求

我可以通过使用 mechanize 发出相同的请求然后使用 "Create New Guest" 按钮来解决我的问题。