发现一个很好玩的浏览器模拟操作包,下面演示一下,打开网站,点击某个链接
package main import ( "fmt" "time" "github.com/go-vgo/robotgo" "sourcegraph.com/sourcegraph/go-selenium" ) func main() { var webDriver selenium.WebDriver var err error caps := selenium.Capabilities(map[string]interface{}{"browserName": "firefox"}) if webDriver, err = selenium.NewRemote(caps, "http://localhost:9515"); err != nil { fmt.Printf("Failed to open session: %s\n", err) return } defer webDriver.Quit() err = webDriver.Get("http://www.yiyou.org") if err != nil { fmt.Printf("Failed to load page: %s\n", err) return } robotgo.MoveMouseSmooth(323, 186) //移动鼠标 robotgo.MouseClick("left", true) //单击 time.Sleep(time.Second * 5) robotgo.MoveMouseSmooth(422, 412) robotgo.MouseClick("left", true) time.Sleep(time.Second * 5) cookies, err := webDriver.GetCookies() //获取cookie if err != nil { fmt.Println(err) } time.Sleep(time.Second * 5) fmt.Print("Cookie:", cookies) fmt.Print(robotgo.GetMousePos()) for { } }
需要先运行chromedriver,下载地址:
https://chromedriver.storage.proxy.ustclug.org/index.html
chromedp,了解一下?
我两个都了解下
[selenium] 14:03:44.068100 -> POST www.baidu.com/session [49 bytes] Failed to open session: Post www.baidu.com/session: unsupported protocol scheme ""
菜鸟求助: [selenium] 14:03:44.068100 -> POST www.baidu.com/session [49 bytes] Failed to open session: Post www.baidu.com/session: unsupported protocol scheme "" 怎么解决呀? chromedriver怎么安装呢?
下载地址木得了....