16 lines
304 B
Go
16 lines
304 B
Go
|
// Package util ...
|
||
|
//
|
||
|
// Description : util ...
|
||
|
//
|
||
|
// Author : go_developer@163.com<白茶清欢>
|
||
|
//
|
||
|
// Date : 2023-01-24 16:16
|
||
|
package util
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestNewChrome(t *testing.T) {
|
||
|
instance, _ := NewChrome("/Users/zhangdeman/Downloads/chromedriver", 9515, true, nil)
|
||
|
instance.Render()
|
||
|
}
|