我正在尝试导入以下 git 项目github.com/tebeka/selenium
当我使用标准的 Go 依赖管理时,它就像go get github.com/tebeka/selenium
, 然后
import ("github.com/tebeka/selenium"
"github.com/tebeka/selenium/chrome")
但是,当我尝试对 vgo(模块)做同样的事情时,我收到以下错误:
unknown import path "github.com/tebeka/selenium/chrome": cannot find module providing package github.com/tebeka/selenium/chrome
Go mod 生成以下 go.mod 文件
module mymodule
require (
github.com/BurntSushi/toml v0.3.1
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
github.com/tebeka/selenium v0.9.3
)