Questions tagged [firefox-profile]

Firefox saves your personal information such as bookmarks, passwords, and user preferences in a set of files called your profile, which is stored in a separate location from the Firefox program files. You can have multiple Firefox profiles, each containing a separate set of user information. The Profile Manager allows you to create, remove, rename, and switch profiles.

Firefox saves your personal information such as bookmarks, passwords, and user preferences in a set of files called your profile, which is stored in a separate location from the Firefox program files. You can have multiple Firefox profiles, each containing a separate set of user information. The Profile Manager allows you to create, remove, rename, and switch profiles.

Reference: Use the Profile Manager to create and remove Firefox profiles

90 questions
1
vote
1 answer

Firefox profile not loaded in Open Browser with Robot Framework SeleniumLibrary 4.0

I have created a new profile for Firefox to be used with Robot Framework SeleniumLibrary. However the profile is not loaded using the following *** Settings *** Library SeleniumLibrary *** Keywords *** Just testing Open Browser …
1
vote
3 answers

How to use existing login token for telegram web using selenium webdriver

I'm trying to read telegram messages from https://web.telegram.org with selenium. When i open https://web.telegram.org in firefox i'm already logged in, but when opening the same page from selenium webdriver(firefox) i get the login page. I saw…
Cony
  • 213
  • 1
  • 8
  • 21
1
vote
2 answers

startProfile(FirefoxProfile, File, String) undefined for the type FirefoxBinary

Is the method startProfile(FirefoxProfile, File, String) in FirefoxBinary deprecated ? I have imported the latest selenium jar in my java project and I am having a compiling error when I'm trying to use startProfile(FirefoxProfile, File, String). It…
lharry
  • 135
  • 1
  • 3
  • 16
1
vote
1 answer

Selenium Tests take several minutes to start when loading a profile

I am just trying to figure out if anyone else has seen their Selenium tests run significantly slower (takes 2+ minutes to start) when they load a profile into the FirefoxDriver as shown in: Selenium a default profile for the Firefox The question…
shagen
  • 11
  • 3
1
vote
1 answer

Getting java.lang.NullPointerException in profile.setPreference("browser.popups.showPopupBlocker", false);

System.setProperty("webdriver.gecko.driver","C:\\geckodriver.exe"); ProfilesIni profile2 = new ProfilesIni(); FirefoxProfile profile3 = profile2.getProfile("AutoProfile"); profile3.setPreference("browser.popups.showPopupBlocker", false); …
1
vote
0 answers

How to change temporary file system path selenium 3

I'm trying to change the temporary file system path of Selenium 3.x. because I want to place the temporary firefox profiles (moz_profile) on a ram disk In Selenium 2.52 I was able to change the directory with the following code: …
1
vote
2 answers

How to load specific firefox profile using robotframework and Selenium libraries

I am trying to automate few tasks related to a website and I would like to load Firefox profile (where I have specific settings done) using Selenium libraries in Robot Framework. I have written below (which doesn't contain all the steps) - ***…
User2014
  • 101
  • 3
  • 18
1
vote
2 answers

Adding a firefox certificate from the command line

I have been trying to set up Selenium to access an ssl protected service via firefox. To do this, it looks like I need to I am capable of setting up a firefox profile via the GUI in such a way that will allow me to access the server, but I need to…
somexp12
  • 497
  • 1
  • 6
  • 19
1
vote
2 answers

Download file to given absolute path in Firefox using Protractor

Im using Protractor for E2E testing. During automation, I need to download files to C:\Automation folder in my system. But below code is not working. Note:During automation execution,The Save as popup opens(but i have to disable that in future) and…
Nalu
  • 195
  • 2
  • 13
1
vote
1 answer

Use a Custom Firefox profile with nightwatch.js selenium gecko driver

I have search for about 8 hours and read pretty much every related topic on this matter but i didn't found a solution so far. The closest i found is https://github.com/nightwatchjs/nightwatch/issues/1368 however that matter was resolved with…
1
vote
1 answer

python selenium driver.quit() can not quit firefox browser if firefox_profile setted

This problem really confused me a lot. I'm using python selenium do some automatic work. After the work done, i need to close browser(I must use firefox). And I know driver.close() is to close current window and driver.quit() will close all windows…
chenkh
  • 69
  • 1
  • 9
1
vote
1 answer

Selenium 3 Firefox Profile

Selenium Version : 3.3.1 I am trying to start up a windows node using the following command java -role node -nodeConfig <%=@selenium_node %> -Dwebdriver.firefox.profile <%=@firefox_profile_directory %> -jar <%=@selenium_jar %> I have put the -D...…
1
vote
1 answer

Set firefox profile protractor

I try to use this code: var makeFirefoxProfile = function (preferenceMap) { var deferred = q.defer(); var firefoxProfile = new FirefoxProfile(); for (var key in preferenceMap) { firefoxProfile.setPreference(key, preferenceMap[key]); } …
1
vote
0 answers

Selenium webdriver Firefox and ssl-prompt

Using version 2.53.1 of Selenium and Firefox browser version 35 together with this script: package no.mine; import java.net.MalformedURLException; import org.junit.Assert; import org.openqa.selenium.WebDriver; import…
0
votes
0 answers

How to save firefox profiles to a folder using selenium and python

When i load a firefox profile into a selenium webdriver like this: fp = webdriver.FirefoxProfile('c:/profile_folder_path') driver = webdriver.Firefox(executable_path='geckodriver.exe', firefox_profile=fp) it loads the profile fine and it works. But…
Demaxl
  • 57
  • 2
  • 10