921cfa389c
Refactored `script.py` by adding detailed docstrings and organizing functions. Created `.idea` configuration files and `gotodashboard.js` for `sisa_crawl` project. Added `readme.md` files with usage instructions and context for multiple scripts, and set up `package.json` for `sisa_crawl` dependencies.
9 lines
290 B
JavaScript
9 lines
290 B
JavaScript
const puppeteer = require("puppeteer");
|
|
|
|
async function launchBrowser() {
|
|
return puppeteer.launch({
|
|
executablePath: process.env.CHROMIUM_PATH || 'C:\\Users\\bdaneels\\Documents\\chromium\\chrome-win\\chrome.exe',
|
|
headless: false
|
|
});
|
|
}
|
|
module.exports = launchBrowser; |