LouisLam
3 years ago
6 changed files with 3246 additions and 245 deletions
@ -1,5 +1,6 @@ |
|||||
module.exports = { |
module.exports = { |
||||
"launch": { |
"launch": { |
||||
"headless": false |
"headless": false, |
||||
|
"userDataDir": "./data/test-chrome-profile", |
||||
} |
} |
||||
}; |
}; |
||||
|
File diff suppressed because it is too large
@ -0,0 +1,5 @@ |
|||||
|
const fs = require("fs"); |
||||
|
|
||||
|
fs.rmdirSync("./data/test-chrome-profile", { |
||||
|
recursive: true, |
||||
|
}); |
@ -0,0 +1,5 @@ |
|||||
|
const fs = require("fs"); |
||||
|
|
||||
|
fs.rmdirSync("./data/test", { |
||||
|
recursive: true, |
||||
|
}); |
Loading…
Reference in new issue