How can I add extra_capabilities for firefox to test with selenium using perl?
I have been able to set this parameters like download folder and prompt for download in the following manner (Or similar, as I don't have that code right know):
'extra_capabilities' => {
'chromeOptions' => {
'prefs' => {
'download.default_directory' => '/Users/User/Desktop/my_folder',
"download.prompt_for_download" => 0,
"download.directory_upgrade" => 1,
}
},
'binaray' => '/Users/User/Applications/Chromium',
}
I've been trying to do the same with firefox but I have not been able to get those properties anywhere. The only code I've found in other questions is for java using some profile objects which I think it's not available for perl.
This is a simplified version of my attempt but it doesn't seem to work. But it does not generate an exception either:
use Selenium::Firefox;
use strict;
use warnings;
use utf8;
use Selenium::Waiter qw/wait_until/;
$Selenium::Remote::Driver::FORCE_WD3=1;
my $driver = Selenium::Firefox->new(marionette_enabled => 1,
capabilities => {
"browser.download.folderList" => 2,
"browser.helperapps.neverAsk.saveToDisk" => "tcx",
"browser.download.dir" => '/Users/User/Desktop/myFolder/'
} );
$driver->set_implicit_wait_timeout(3000);
my $url_to_download = "http://blablabla.com/blabla.tcx";
$driver->get($url_to_download);
$driver->quit();
$driver->shutdown_binary();
perl selenium firefox download
add a comment |
I have been able to set this parameters like download folder and prompt for download in the following manner (Or similar, as I don't have that code right know):
'extra_capabilities' => {
'chromeOptions' => {
'prefs' => {
'download.default_directory' => '/Users/User/Desktop/my_folder',
"download.prompt_for_download" => 0,
"download.directory_upgrade" => 1,
}
},
'binaray' => '/Users/User/Applications/Chromium',
}
I've been trying to do the same with firefox but I have not been able to get those properties anywhere. The only code I've found in other questions is for java using some profile objects which I think it's not available for perl.
This is a simplified version of my attempt but it doesn't seem to work. But it does not generate an exception either:
use Selenium::Firefox;
use strict;
use warnings;
use utf8;
use Selenium::Waiter qw/wait_until/;
$Selenium::Remote::Driver::FORCE_WD3=1;
my $driver = Selenium::Firefox->new(marionette_enabled => 1,
capabilities => {
"browser.download.folderList" => 2,
"browser.helperapps.neverAsk.saveToDisk" => "tcx",
"browser.download.dir" => '/Users/User/Desktop/myFolder/'
} );
$driver->set_implicit_wait_timeout(3000);
my $url_to_download = "http://blablabla.com/blabla.tcx";
$driver->get($url_to_download);
$driver->quit();
$driver->shutdown_binary();
perl selenium firefox download
4
The tests suggest that you can just useextra_capabilitieswith Selenium::Firefox as well ( grep.metacpan.org/… )
– Corion
Dec 28 '18 at 17:47
2
For some reason, I was not aware of the grep metacpan site. That's a really useful resource, Thanks @Corion
– bytepusher
Dec 28 '18 at 17:49
add a comment |
I have been able to set this parameters like download folder and prompt for download in the following manner (Or similar, as I don't have that code right know):
'extra_capabilities' => {
'chromeOptions' => {
'prefs' => {
'download.default_directory' => '/Users/User/Desktop/my_folder',
"download.prompt_for_download" => 0,
"download.directory_upgrade" => 1,
}
},
'binaray' => '/Users/User/Applications/Chromium',
}
I've been trying to do the same with firefox but I have not been able to get those properties anywhere. The only code I've found in other questions is for java using some profile objects which I think it's not available for perl.
This is a simplified version of my attempt but it doesn't seem to work. But it does not generate an exception either:
use Selenium::Firefox;
use strict;
use warnings;
use utf8;
use Selenium::Waiter qw/wait_until/;
$Selenium::Remote::Driver::FORCE_WD3=1;
my $driver = Selenium::Firefox->new(marionette_enabled => 1,
capabilities => {
"browser.download.folderList" => 2,
"browser.helperapps.neverAsk.saveToDisk" => "tcx",
"browser.download.dir" => '/Users/User/Desktop/myFolder/'
} );
$driver->set_implicit_wait_timeout(3000);
my $url_to_download = "http://blablabla.com/blabla.tcx";
$driver->get($url_to_download);
$driver->quit();
$driver->shutdown_binary();
perl selenium firefox download
I have been able to set this parameters like download folder and prompt for download in the following manner (Or similar, as I don't have that code right know):
'extra_capabilities' => {
'chromeOptions' => {
'prefs' => {
'download.default_directory' => '/Users/User/Desktop/my_folder',
"download.prompt_for_download" => 0,
"download.directory_upgrade" => 1,
}
},
'binaray' => '/Users/User/Applications/Chromium',
}
I've been trying to do the same with firefox but I have not been able to get those properties anywhere. The only code I've found in other questions is for java using some profile objects which I think it's not available for perl.
This is a simplified version of my attempt but it doesn't seem to work. But it does not generate an exception either:
use Selenium::Firefox;
use strict;
use warnings;
use utf8;
use Selenium::Waiter qw/wait_until/;
$Selenium::Remote::Driver::FORCE_WD3=1;
my $driver = Selenium::Firefox->new(marionette_enabled => 1,
capabilities => {
"browser.download.folderList" => 2,
"browser.helperapps.neverAsk.saveToDisk" => "tcx",
"browser.download.dir" => '/Users/User/Desktop/myFolder/'
} );
$driver->set_implicit_wait_timeout(3000);
my $url_to_download = "http://blablabla.com/blabla.tcx";
$driver->get($url_to_download);
$driver->quit();
$driver->shutdown_binary();
perl selenium firefox download
perl selenium firefox download
edited Dec 28 '18 at 22:07
nck
asked Dec 28 '18 at 17:45
ncknck
305112
305112
4
The tests suggest that you can just useextra_capabilitieswith Selenium::Firefox as well ( grep.metacpan.org/… )
– Corion
Dec 28 '18 at 17:47
2
For some reason, I was not aware of the grep metacpan site. That's a really useful resource, Thanks @Corion
– bytepusher
Dec 28 '18 at 17:49
add a comment |
4
The tests suggest that you can just useextra_capabilitieswith Selenium::Firefox as well ( grep.metacpan.org/… )
– Corion
Dec 28 '18 at 17:47
2
For some reason, I was not aware of the grep metacpan site. That's a really useful resource, Thanks @Corion
– bytepusher
Dec 28 '18 at 17:49
4
4
The tests suggest that you can just use
extra_capabilities with Selenium::Firefox as well ( grep.metacpan.org/… )– Corion
Dec 28 '18 at 17:47
The tests suggest that you can just use
extra_capabilities with Selenium::Firefox as well ( grep.metacpan.org/… )– Corion
Dec 28 '18 at 17:47
2
2
For some reason, I was not aware of the grep metacpan site. That's a really useful resource, Thanks @Corion
– bytepusher
Dec 28 '18 at 17:49
For some reason, I was not aware of the grep metacpan site. That's a really useful resource, Thanks @Corion
– bytepusher
Dec 28 '18 at 17:49
add a comment |
1 Answer
1
active
oldest
votes
Thanks to the help of @Corion I've been able to make it work. This is the code I've used to create the driver:
my $driver = Selenium::Firefox->new(marionette_enabled => 1,
extra_capabilities => {
'moz:firefoxOptions' => {
'prefs' => {
"browser.download.folderList" => 2,
"browser.helperApps.neverAsk.saveToDisk" => "application/tcx+xml",
"browser.download.dir" => '/Users/User/Desktop/myFolder/'
}
}
} );
In order to get the "browser.helperApps.neverAsk.saveToDisk" property just use the network inspector manually and get the content-type of the response.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53962374%2fhow-can-i-add-extra-capabilities-for-firefox-to-test-with-selenium-using-perl%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks to the help of @Corion I've been able to make it work. This is the code I've used to create the driver:
my $driver = Selenium::Firefox->new(marionette_enabled => 1,
extra_capabilities => {
'moz:firefoxOptions' => {
'prefs' => {
"browser.download.folderList" => 2,
"browser.helperApps.neverAsk.saveToDisk" => "application/tcx+xml",
"browser.download.dir" => '/Users/User/Desktop/myFolder/'
}
}
} );
In order to get the "browser.helperApps.neverAsk.saveToDisk" property just use the network inspector manually and get the content-type of the response.
add a comment |
Thanks to the help of @Corion I've been able to make it work. This is the code I've used to create the driver:
my $driver = Selenium::Firefox->new(marionette_enabled => 1,
extra_capabilities => {
'moz:firefoxOptions' => {
'prefs' => {
"browser.download.folderList" => 2,
"browser.helperApps.neverAsk.saveToDisk" => "application/tcx+xml",
"browser.download.dir" => '/Users/User/Desktop/myFolder/'
}
}
} );
In order to get the "browser.helperApps.neverAsk.saveToDisk" property just use the network inspector manually and get the content-type of the response.
add a comment |
Thanks to the help of @Corion I've been able to make it work. This is the code I've used to create the driver:
my $driver = Selenium::Firefox->new(marionette_enabled => 1,
extra_capabilities => {
'moz:firefoxOptions' => {
'prefs' => {
"browser.download.folderList" => 2,
"browser.helperApps.neverAsk.saveToDisk" => "application/tcx+xml",
"browser.download.dir" => '/Users/User/Desktop/myFolder/'
}
}
} );
In order to get the "browser.helperApps.neverAsk.saveToDisk" property just use the network inspector manually and get the content-type of the response.
Thanks to the help of @Corion I've been able to make it work. This is the code I've used to create the driver:
my $driver = Selenium::Firefox->new(marionette_enabled => 1,
extra_capabilities => {
'moz:firefoxOptions' => {
'prefs' => {
"browser.download.folderList" => 2,
"browser.helperApps.neverAsk.saveToDisk" => "application/tcx+xml",
"browser.download.dir" => '/Users/User/Desktop/myFolder/'
}
}
} );
In order to get the "browser.helperApps.neverAsk.saveToDisk" property just use the network inspector manually and get the content-type of the response.
answered Dec 28 '18 at 18:36
ncknck
305112
305112
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53962374%2fhow-can-i-add-extra-capabilities-for-firefox-to-test-with-selenium-using-perl%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
4
The tests suggest that you can just use
extra_capabilitieswith Selenium::Firefox as well ( grep.metacpan.org/… )– Corion
Dec 28 '18 at 17:47
2
For some reason, I was not aware of the grep metacpan site. That's a really useful resource, Thanks @Corion
– bytepusher
Dec 28 '18 at 17:49