问题标签 [clientform]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
416 浏览

python - 如何修复此类 ClientForm 错误?

from mechanize import Browser br = Browser() page = br.open(' http://wow.interzet.ru/news.php?readmore=23 ') br.form = br.forms().next() print br .form 给我以下错误:

我该如何解决?

编辑:

我已经这样修好了。可以吗?如果不是,如何取而代之?

0 投票
1 回答
2770 浏览

python - Python mechanize 不点击按钮

检查以下脚本:

也就是说,它不添加提交按钮的名称=值对(注册=注册)。为什么会这样?ClientForm 在其他页面上正常工作,但在这个页面上却不是。我尝试将提交控件的禁用和只读属性设置为 True,但并没有解决问题。

0 投票
1 回答
2241 浏览

python - How to set an nonexistent field in Python ClientForm?

I'm using mechanize (which uses clientform) for some web crawling in python and since it doesn't support JS, I want to set a value of an unexistent input in a form (the input is generated by JS). How can I do this?

The error is similar to the one you get if you try to execute

0 投票
1 回答
195 浏览

python - Python Clientform-无法得到expexted结果

我正在尝试使用关键字“现场音乐”搜索http://www.wegottickets.com/ 。但是返回的结果仍然是主页,而不是包含大量现场音乐信息的搜索结果页面。谁能告诉我问题是什么?

非常感谢!

0 投票
2 回答
570 浏览

python - Python ClientForm 错误

从 urllib2 导入 ClientForm 导入 urlopen

问题是 ClientForm 通过以下方式解析第一个 html 表单:

因此,没有找到和name输入。我该如何解决?TIAemailurl

更新:实际上,我没有单独使用 ClientForm,而是作为机械化的一部分,因此更喜欢允许在不重写机械化代码的情况下进行修复的解决方案

0 投票
2 回答
1452 浏览

python - 我的 python 自动登录脚本坏了

很久以前,我写了一个小python脚本来自动登录我办公室的无线网络。

这是代码:

我最近换了电脑,它停止工作。现在,我得到了错误:

这让我看起来好像没有安装一些包(ClientForm),所以我安装了它(sudo port install py-clientform),但我仍然得到同样的错误。有谁知道我做错了什么?

0 投票
1 回答
641 浏览

python - 如何将查询提交到 http://www.ratsit.se/BC/Search.aspx ?我写了一个脚本,但“单击”按钮似乎有问题

'''

'''

''' 在这里给出错误:发生以下错误:“'str' object has no attribute 'name'” '''

0 投票
1 回答
873 浏览

python - Python - 机械化。CSRF 令牌/“referer header”有问题

当我提交时,表单的一部分似乎被回显,产生错误。

我需要使用一个类来操作它吗?

还有这个未知的Javascript可能是问题所在。

我已经为此寻找了一段时间。

0 投票
0 回答
62 浏览

python - ModuleNotFoundError:没有名为“表单”的模块,当我尝试运行“从表单导入 ClientForm,BlogForm”时

我正在尝试运行我朋友的计算机运行良好的代码,但它对我不起作用。

from forms import ClientForm, BlogForm

这行代码导致错误,我也尝试了以下几行:

from .forms import ClientForm, BlogForm from django import forms

当我尝试时pip install ClientForm,我收到以下错误:

错误:找不到满足 ClientForm 要求的版本

错误:没有为 ClientForm 找到匹配的分布

这是我需要开始工作的代码行form = ClientForm()

我们都在使用 spyder,但我仍然遇到问题。