gpt4 book ai didi

带有由 Javascript 填充的选项的 Python Mechanize 表单

转载 作者:行者123 更新时间:2023-12-04 16:22:28 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Python mechanize javascript

(1 个回答)


7年前关闭。




我正在尝试使用 Mechanize 从以下站点获取纽约地铁-北部铁路的价格:http://as0.mta.info/mnr/fares/choosestation.cfm

问题是,当您选择第一个选项时,该站点使用 javascript 来填充您的可能目的地列表。我已经用 python 编写了等效的代码,但我似乎无法让它全部工作。这是我到目前为止所拥有的:

import mechanize
import cookielib
from bs4 import BeautifulSoup

br = mechanize.Browser()
br.set_handle_robots(False)
br.addheaders = [('User-agent', 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.1) Gecko/2008071615 Fedora/3.0.1-1.fc9 Firefox/3.0.1')]

br.open("http://as0.mta.info/mnr/fares/choosestation.cfm")

br.select_form(name="form1")
br.form.set_all_readonly(False)

origin_control = br.form.find_control("orig_stat", type="select")
origin_control_list = origin_control.items
origin_control.value = [origin_control.items[0].name]

destination_control_list = reFillList(0, origin_control_list)

destination_control = br.form.find_control("dest_stat", type="select")
destination_control.items = destination_control_list
destination_control.value = [destination_control.items[0].name]

response = br.submit()
response_text = response.read()
print response_text

我知道我没有给你 reFillList() 方法的代码,因为它很长,但假设它正确地创建了一个 mechanize.option 对象列表。 Python 不会向我提示任何事情,但是在提交时,我得到了此警报的 html:

“在线无法提供两条线路之间的票价信息。请调用 511 联系我们的客户信息中心,并要求与代表交谈以获取更多信息。”

我在这里错过了什么吗?感谢所有的帮助!

最佳答案

如果不尝试理解该函数中的疯狂逻辑,就无法真正做到这一点。我建议使用 js 解决方案或像 selenium 这样的完整浏览器。

关于带有由 Javascript 填充的选项的 Python Mechanize 表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11024340/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com