Vincent Jaubert

Results 25 comments of Vincent Jaubert

I have found this hack that works ```js page.click("fooLink"); await new Promise(resolve => global.setTimeout(resolve, 5000)); const windows = BrowserWindow.getAllWindows(); const newPage = await pie.getPage(browser, windows[0]);//new window is first one in...

This code works : ```js const promises = await Promise.all([ new Promise(resolve => browser.once("targetcreated", target => resolve(target.page())) ), page.click("fooLink") ]); const newPage = promises[0]; ```

Thank you for taking the time to look at this. Unfortunately this doesn't really change the situation for me, startup is a bit faster, but it still does take between...

Npm test took 4.20s on my laptop. Like i said, the problem doesn't happen if i do the connect at the start of electron (hence the workaround that i found...

Sure, it's node v14.20.0

I'm using Meteor, which doesn't support node 16 ATM. IMHO, your documentation should mention that Node v14 is not supported.

J'ai un peu joué avec l'api ratp au mois de septembre, et le plus "drôle" c'est que le format des réponses n'est pas stable...

What version of Node do you need to support ? After some searching, it seems all version of Node after v12 support TextEncoder on the global object (as in the...

Current Node LTS is v16, and v14 will just get security fixes until april of 2023, so it's probably pretty safe not to support v10 and v11, imho.

I'm not familiar with this project architecture but it seems it has a lot of tools and entry points. Where would be a good place to put this check ?...