Max Maischein
Max Maischein
Whoops, that is a problem in my code. I'll look that I release a fixed version soon!
Yeah - I'm still working on this one resp. thinking about whether to skip this test when running the tests as root. I see the options of * skipping all...
I'll release this soonish onto CPAN as well. Thanks for the diagnosis and report!
Yes - the error is "merely" that there is a timing/understanding issue between the tests and Chrome and sometimes the id of a node cannot be retrieved as it is...
Can you please post the version of the `URI` module you have? Maybe there was a change there... perl -MURI -e "print URI->VERSION" Locally I have URI 5.09 and it...
These are the versions that I expect. Maybe the output of Chrome is unexpected in some way... Can you please run your test program with the logging level set to...
The following program works for me, connecting to a running Chrome instance (and for this test, also launching the Chrome instance): ```perl #!perl use strict; use warnings; use Test::More; use...
https://github.com/cyrus-and/chrome-har-capturer might be a relevant API to look at
I've never used basic auth with a proxy, but maybe try launch_arg => ['--proxy-server=http://user:[email protected]'] ... or try setting the HTTP_PROXY variable before launching Chrome: $ENV{HTTP_PROXY} = 'http://user:[email protected]'; $ENV{HTTPS_PROXY} = 'http://user:[email protected]';...
Oh - I encounter these problems with nodes getting `nodeId` 0 , but I didn't know you can avoid them by sleeping a bit. I'll investigate whether sleeping within `->xpath`...