机械化 - 添加到提交后的表单
我正在使用 Mechanize 填写表格。这种形式的一部分是动态的。它默认有 5 个字段选项,然后使用 javascript 动态添加其他文本字段。按下按钮后,这些字段不会显示在页面源中,但遵循相同的命名模式,IE:name=options[6]。
有没有办法用机械化来处理这个问题?可以手动添加要提交的字段吗?
I'm using Mechanize to fill out a form. Part of this form is dynamic. It defaults to have 5 field options, and it then uses javascript to dynamically add additional text fields. The fields do not show up in the page source after the button is pressed, but follows the same naming patter, IE: name=options[6].
Is there a way to handle this with Mechanize? Can you manually add fields to be submitted?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案是添加一个新控件然后设置值。
The solution is to add a new control then set the value.