英文:
sending phantomjs setting in golang
问题
我正在使用go selenium包:https://github.com/tebeka/selenium
,并使用phantomjs浏览器:
caps := selenium.Capabilities{
"browserName": "phantomjs",
}
wd, err := selenium.NewRemote(caps, "")
if err != nil {
log.Fatal(err)
}
我还尝试发送一些phantomjs设置,以便设置用户代理字符串。我正在尝试创建一个网络爬虫,但某些网站不会加载headless浏览器的用户代理。我知道这可以用Python和其他语言实现,但我还没有在go中看到任何示例。
英文:
I'm using the go selenium package: https://github.com/tebeka/selenium
and using the phantomjs browser:
caps := selenium.Capabilities{
"browserName": "phantomjs",
}
wd, err := selenium.NewRemote(caps, "")
if err != nil {
log.Fatal(err)
}
I'm trying to also send along some phantomjs settings so I can set the user-agent string. I'm trying to make a crawler and certain websites won't load with a headless browser user-agent. I know this can be done with python and other languages but I haven't seen any examples in go.
答案1
得分: 0
你应该设置驱动程序的二进制路径和浏览器名称:
caps := selenium.Capabilities{
"browserName": "phantomjs", // "chrome"或其他
"phantomjs.binary.path": "/path/to/phantomjs", // 从http://phantomjs.org/下载的二进制文件路径
}
你的系统中应该安装了PhantomJS。
英文:
You should set driver binary path and browser name:
caps := selenium.Capabilities{
"browserName": "phantomjs", // "chrome", or any other
"phantomjs.binary.path": "/path/to/phantomjs", // path to binary from http://phantomjs.org/
}
PhantomJS should be installed in your system.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论