File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog (2024)
2
+ - 2.3.5 (Oct 16)
3
+ - Fix apigen to use ToT from github for downloading json files. Update to latest protocol
2
4
- 2.3.4 (Mar 18)
3
5
- Fix return types for calls that return two-dimensional arrays
4
6
- 2.3.3 (Jan 31)
Original file line number Diff line number Diff line change @@ -62,10 +62,6 @@ func testCleanUp() {
62
62
}
63
63
64
64
func TestDeleteProfileOnExit (t * testing.T ) {
65
- if runtime .GOOS == "windows" {
66
- //t.Skip("windows will hold on to the process handle too long")
67
- }
68
-
69
65
debugger := NewChromeDebugger (WithDeleteProfileOnExit (),
70
66
WithFlags ([]string {"--headless" }),
71
67
)
@@ -75,6 +71,9 @@ func TestDeleteProfileOnExit(t *testing.T) {
75
71
if err != nil {
76
72
t .Fatalf ("error starting chrome: %s\n " , err )
77
73
}
74
+
75
+ debugger .NewTab ()
76
+
78
77
debugger .ExitProcess ()
79
78
time .Sleep (3 * time .Second )
80
79
if stat , err := os .Stat (profileDir ); err == nil {
You can’t perform that action at this time.
0 commit comments