Prepping getSessions
Executing getSessions
Falling back to legacy selenium method for getSessions
REQ: GET, http://localhost:4444/wd/hub/sessions, {}
RES: 404 page not found
I suggest to remove this method.
You can always get session_id like this:
my $driver = Selenium::Remote::Driver->new(%params);
$driver->get('https://example.com');
warn $driver->session_id;
``
There is no
GET /sessions
method in current WebDriver JSON API so get_sessions method will always die with 404 errorI suggest to remove this method.
You can always get session_id like this: