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 11# Changelog (2024)
2+ - 2.3.5 (Oct 16)
3+ - Fix apigen to use ToT from github for downloading json files. Update to latest protocol
24- 2.3.4 (Mar 18)
35 - Fix return types for calls that return two-dimensional arrays
46- 2.3.3 (Jan 31)
Original file line number Diff line number Diff line change @@ -62,10 +62,6 @@ func testCleanUp() {
6262}
6363
6464func TestDeleteProfileOnExit (t * testing.T ) {
65- if runtime .GOOS == "windows" {
66- //t.Skip("windows will hold on to the process handle too long")
67- }
68-
6965 debugger := NewChromeDebugger (WithDeleteProfileOnExit (),
7066 WithFlags ([]string {"--headless" }),
7167 )
@@ -75,6 +71,9 @@ func TestDeleteProfileOnExit(t *testing.T) {
7571 if err != nil {
7672 t .Fatalf ("error starting chrome: %s\n " , err )
7773 }
74+
75+ debugger .NewTab ()
76+
7877 debugger .ExitProcess ()
7978 time .Sleep (3 * time .Second )
8079 if stat , err := os .Stat (profileDir ); err == nil {
You can’t perform that action at this time.
0 commit comments