8000 Tags · aadog/rod · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: aadog/rod

Tags

v0.105.1

Toggle v0.105.1's commit message
ignore Element.Input dispatch events error

fix go-rod#497

v0.105.0

Toggle v0.105.0's commit message
also push dev docker image

v0.104.4

Toggle v0.104.4's commit message
add stack trace message for rod.Try

v0.104.3

Toggle v0.104.3's commit message
update got version

Here's the code we use to refactor

```go
func main() {
	_ = filepath.Walk(".", func(path string, info fs.FileInfo, err error) error {
		if !strings.HasSuffix(path, "_test.go") || strings.HasPrefix(path, "lib/proto/") {
			return nil
		}

		fmt.Println(path)

		f, _ := os.ReadFile(path)

		ms := regexp.MustCompile(`(?m)^func \(t T\)`).FindAllIndex(f, -1)
		for _, m := range ms {
			cmd := fmt.Sprintf("gopls -remote=127.0.0.1:8888 rename -w %s:#%d g", path, m[0]+6)
			utils.ExecLine(cmd)
		}

		f, _ = os.ReadFile(path)
		f = regexp.MustCompile(`(?m)^func \(g T\) ([^\s]+)\(\) \{`).
			ReplaceAll(f, []byte("func Test$1(t *testing.T) {\n\tg := setup(t)\n"))

		err = os.WriteFile(path, f, info.Mode())
		return err
	})
}
```

v0.104.2

Toggle v0.104.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Make the doc for Timeout more clear (go-rod#567)

v0.104.1

Toggle v0.104.1's commit message
update chromium revision

v0.104.0

Toggle v0.104.0's commit message
update chromium revision

v0.103.0

Toggle v0.103.0's commit message
use element to get the window obj

v0.102.1

Toggle v0.102.1's commit message
update chromium revision

v0.102.0

Toggle v0.102.0's commit message
update chrome revision

0