david-dick / firefox-marionette

This is a client module to automate the Mozilla Firefox browser via the Marionette protocol
https://metacpan.org/dist/Firefox-Marionette
Other
12 stars 3 forks source link

devtool doesn't show up when option profile_name and har is specified #10

Closed prozorecJP closed 3 years ago

prozorecJP commented 3 years ago

When Firefox::Marionette start with following options, Web devtool doesn't show up.

my $firefox = Firefox::Marionette->new ( 'profile_name' => 'marionette', 'visible' => 1, 'survive' => 1, 'har' => 1 );

david-dick commented 3 years ago

Thanks for the report. I've committed a fix for the har issue. There is a second issue here as well, which is specifying the survive parameter with a profile_name. Can you confirm that the fix works without the survive parameter?

prozorecJP commented 3 years ago

I confirmed the fix works fine without "survive" option. Thank you.

david-dick commented 3 years ago

A fix for survive and profile name has been committed as well. Feel free to re-open if this doesn't work for you. Thanks for the bug report.