Go (chromedp)
We offer beta support for the chromedp
Go library.
Usage of the library remains similar to how you'd run your application locally, simply use the RemoteAllocator
to connect to browserless API.
An example of navigating to the Example.com site, and getting the title, is listed below as a jumping off point:
package main
import (
"context"
"flag"
"log"
"github.com/chromedp/chromedp"
)
func main() {
devtoolsWsURL := flag.String("devtools-ws-url", "wss://production-sfo.browserless.io?token=GOES-HERE", "DevTools WebSsocket URL")
flag.Parse()
allocatorContext, cancel := chromedp.NewRemoteAllocator(context.Background(), *devtoolsWsURL,chromedp.NoModifyURL)
defer cancel()
ctx, cancel := chromedp.NewContext(allocatorContext)
defer cancel()
var title string
if err := chromedp.Run(ctx,
chromedp.Navigate("https://example.com"),
chromedp.Title(&title),
); err != nil {
log.Fatalf("Failed getting title of example.com: %v", err)
}
log.Println("Got title of:", title)
}
Be sure to let us know if you have questions or issues.