golang語言chromedp包介紹以及如何彈出瀏覽器進行調試

golang語言chromedp包介紹以及如何彈出瀏覽器進行調試

背景

想要作一個定時自動發送微博的程序,微博API提供了一個接口statuses/share,可是該接口須要註冊微博開發者並審覈經過(須要有app或者網站)微博應用審覈產品指南。所以經過搜索引擎瞭解到能夠經過程序控制chrome瀏覽器來實現,在GitHub上找到了chromedp這個包,可是相關文檔比較少。這裏把我瞭解和學習這個包,並實現自動化發送微博的過程記錄並分享出來。git

關於chromedp

GitHub地址:https://github.com/chromedp/chromedpgithub

安裝chromedp

go get -u github.com/chromedp/chromedp

使用例子

關於如何使用官方還有一個項目專門來寫了幾個例子來幫助你們入門,第一次接觸能夠先用官方的例子試一下。可是這裏要注意官方的例子中使用的好多都是在國內被屏蔽的網站,地址:https://github.com/chromedp/examplesgolang

chrome普通模式與chrome headless模式的區別

普通模式

普通模式會在電腦上彈出瀏覽器窗口,能夠在瀏覽器中看到代碼執行的效果,調用完成以後須要關閉掉瀏覽器。chrome

chrome headless模式

chrome headless模式不會彈出瀏覽器窗口,而且你屢次go run main.go的時候, go 代碼運行中斷致使後臺chrome headless不能退出,致使第二次本地調試失敗, 此時解決方案就是本身手動結束chrome進程。
所以在調試go代碼的時候不建議使用chrome headless模式。瀏覽器

如何使用chrome普通模式

chromedp包默認狀況下使用chrome headless模式,因此須要在禁用該模式纔會彈出你本地的chrome瀏覽器。bash

// Command click is a chromedp example demonstrating how to use a selector to
// click on an element.
package main

import (
	"context"
	"log"
	"time"

	"github.com/chromedp/chromedp"
)

func main() {

    // 禁用chrome headless
	opts := append(chromedp.DefaultExecAllocatorOptions[:],
		chromedp.Flag("headless", false),
	)
	allocCtx, cancel := chromedp.NewExecAllocator(context.Background(), opts...)
	defer cancel()

	// create chrome instance
	ctx, cancel := chromedp.NewContext(
		allocCtx,
		chromedp.WithLogf(log.Printf),
	)
	defer cancel()

	// create a timeout
	ctx, cancel = context.WithTimeout(ctx, 15*time.Second)
	defer cancel()

	// navigate to a page, wait for an element, click
	var example string
	err := chromedp.Run(ctx,
		chromedp.Navigate(`https://golang.org/pkg/time/`),
		// wait for footer element is visible (ie, page is loaded)
		chromedp.WaitVisible(`body > footer`),
		// find and click "Expand All" link
		chromedp.Click(`#pkg-examples > div`, chromedp.NodeVisible),
		// retrieve the value of the textarea
		chromedp.Value(`#example_After .play .input textarea`, &example),
	)
	if err != nil {
		log.Fatal(err)
	}
	log.Printf("Go's time.After example:\n%s", example)
}
相關文章
相關標籤/搜索