最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

用golang chromedp 操作已经打开的chrome浏览器

业界 admin 3浏览 0评论

win7 环境,主要是一开始想在代码中先用exec.Command启动chrome,但始终不能成功监听9222端口,折腾了很长时间,

需要先手工启动chrome监听端口(具体写在代码注释中了)然后再运行代码,在开源代码基础上稍作修改,将访问不了的google换成sohu。

效果就是通过代码将浏览器导航到了sohu

// Command standalone is a chromedp example demonstrating how to use chromedp
// with a standalone (ie, a "pre-existing" / manually started) chrome instance.
package main

import (
    "context"
    "fmt"
    "io/ioutil"
    "log"

    "time"

    "

win7 环境,主要是一开始想在代码中先用exec.Command启动chrome,但始终不能成功监听9222端口,折腾了很长时间,

需要先手工启动chrome监听端口(具体写在代码注释中了)然后再运行代码,在开源代码基础上稍作修改,将访问不了的google换成sohu。

效果就是通过代码将浏览器导航到了sohu

// Command standalone is a chromedp example demonstrating how to use chromedp
// with a standalone (ie, a "pre-existing" / manually started) chrome instance.
package main

import (
    "context"
    "fmt"
    "io/ioutil"
    "log"

    "time"

    "
发布评论

评论列表 (0)

  1. 暂无评论