发送幻影设置在Golang中

huangapple go评论72阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2016年2月1日 14:33:04
  • 转载请务必保留本文链接:https://go.coder-hub.com/35124283.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定