fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
Showing only changes of commit 212eb825aa - Show all commits

View file

@ -94,7 +94,7 @@ async function createBrowser(profilePath): Promise<any> {
];
if (profilePath){
args.push(`--user-data-dir=${profilePath}`);
args.push(`--user-data-dir=${profilePath}`);
}
const browser = await puppeteer.launch({
@ -102,7 +102,7 @@ async function createBrowser(profilePath): Promise<any> {
ignoreHTTPSErrors: true,
headless: false,
});
return browser
return browser;
}
async function recursiveFindInFrames(inputFrame, selector) {