-
Notifications
You must be signed in to change notification settings - Fork 17
chrome.Browser.NewTab
Michael Kenney edited this page Sep 29, 2018
·
1 revision
package main
import (
chrome "github.com/mkenney/go-chrome/tot"
)
func main() {
// ... snip ... //
// Open a tab and navigate to a URL
tab, err := browser.NewTab("https://www.google.com")
if nil != err {
panic(err.Error())
}
}
"When the eagle flies, does it forget that its feet have touched the ground? When the tiger lands upon its prey, does it forget its moment in the air? Three pounds of VAX!"