David
David
Could this problem be related to the same issue this user is experiencing: * https://github.com/mozilla/geckodriver/issues/1058#issuecomment-450430890 or it could be related to this: * https://bugzilla.mozilla.org/show_bug.cgi?id=1421766
--- This code will launch a dedicated profile --- * `perl launch_ff_profile.pl -port=5051 -sleep=5 -profile='/path/to/firefox/profile' -url='https://www.mozilla.org'` ``` use 5.018; use Getopt::Long; use Selenium::Firefox; my $url = ''; my $profile_dir =...
--- Trying to get the marionette port to be sent to the geckodriver --- Problem we're trying to solve: geckodriver needs to be passed the correct marionette-port to be able...
See, this thread, could this be the whole problem with the marionette-port? * https://bugzilla.mozilla.org/show_bug.cgi?id=1344748#c19 Looks like: * **marionette.defaultPrefs.port** were switched out with **marionette.port** Selenium::Firefox::Profile::add_marionette uses defaultPrefs.port https://metacpan.org/source/Selenium::Firefox::Profile ``` sub add_marionette...
Ouch, gone from a P1 to P3-issue. Hope they implement your patch.
The problem with the geckodriver/marionette-port is clearly an upstream problem. But why does this code create a tmp-profile: ``` my $driver = Selenium::Firefox->new( 'firefox_profile' => Selenium::Firefox::Profile->new( 'profile_dir'=>'/path/to/firefox/profile' ) ); ```...