- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我目前正在使用osmosis
来抓取各个帐户内的信息。为了登录这些帐户,我尝试使用 submit
命令。然而它似乎没有做任何事情。我也尝试过 .login
但这似乎根本无法识别该表单。
文档似乎缺少任何示例。有人使用 osmosis
体验过 .submit
吗?
osmosis
.get(url)
.submit("form", {'gebruikersnaam': username, 'wachtwoord': password})
.log(console.log)
.error(console.log)
.debug(console.log);
最佳答案
各个网站的情况有所不同。我假设您尝试登录的网站正在使用某种ajax。如果 .submit
不起作用,您可以尝试执行 .post
。这是解决方法示例。尝试看看是否有效。
.config
中设置 cookie代码:
osmosis
.get(loginUrl)
.post(loginPosturlTarget, {'username': username, 'password': password})
.then((context)=>{
// store cookies after post login.
let cookies = cookie.parse(context.request.headers['cookie']);
scrapeData(cookies);
})
.log(console.log)
.error(console.log)
.debug(console.log);
function scrapeData(cookies){
// do the actual scraping here with the cookie here
osmosis
.config('cookies', cookies)
.get(url)
// your follow/set/paginate/whatever chain here
.data((data)=> {
// do something with the data
})
.log(console.log)
.error(console.log)
.debug(console.log);
}
它不能保证适用于您的情况,但我发现它适用于我工作过的大多数网站。如果仍然不起作用,也许可以尝试其他替代模块,例如 nightmareJs .
关于node.js - Node JS - 渗透表单.submit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52950668/
我是新来的,所以我会尽量使我的帖子清晰易读。 在浏览某些站点的日志时,我遇到了一些我想在封闭服务器中重新创建/测试的黑客攻击尝试。我制作了一个简单的 PHP 网页,它获取一个名为“id”的变量,并且没
我有一个 NSView,它覆盖了其父窗口的内容 View 。该 View 有一个单击事件处理程序,可将其从内容 View 中删除。在这个观点之中,我还有另外一个观点。当我在此内部 View 中拖动鼠标
我正在读取 csv 中的链接并使用它来抓取。我希望 Node 渗透在抓取之间等待,可能是在抓取 10 个站点之后。我尝试使用 sleep ,但它似乎在错误的时间 sleep ,而下一个站点正在被抓取,
页面部分HTML代码 3 303 eur if (price_json.price != '0') { var price_container = docume
我按如下方式为我的查询编制索引: client.Index(new PercolatedQuery { Id = "std_query", Query = new QueryConta
我有一个使用多个 的表单.它们的位置使得弹出式 CSS 日历应该出现在其他人的字段上。但是,其他日期的文本字段最终位于日历的前面。 这只是一个 IE 问题,因为 Firefox 和 Safari 工
我正在编写一个与外部站点连接的 Electron 应用程序。我发现,cheerio 无法抓取需要登录的网站。所以我现在使用渗透,但它显示以下错误。 (get) 已加载 [get] https://so
我想实现一个Osmosis的任务,我想读取.osm.pbf文件并将其写入数据库: C:\osmosis-latest\bin>osmosis --read-pbf file="C:\sbox\maps
我是一名优秀的程序员,十分优秀!