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
0
votes
1 answer

Firefox WebDriver takes forever to start with 28,000+ entries detected in cache?

I'm trying to launch a specific profile in Selenium v4 and Java using the following code: System.setProperty("webdriver.gecko.driver", path_to_geckdriver); File firefoxProfileFile = new File(path_to_file); FirefoxProfile firefoxProfile = new…
S.O.S
  • 848
  • 10
  • 30
0
votes
2 answers

module 'selenium.webdriver' has no attribute 'firefoxprofile'

I'm doing web scraping using selenium.I have encountered an issue. Python version 3.9.7, window…
0
votes
0 answers

Selenium script to download file on headless mode

This is not a duplicate. I want to achieve this on a headless linux server. No GUI, no browser profile file. I need to set profile preferences in code. My goal: download an image file generated by a .php + .js script using python selenium firefox on…
0
votes
1 answer

Python Webscraper Download PDF in Firefox

I am programming a Python Webscraper which needs to be able to click on a download button and save a PDF to a location that is defined through an XML-File. The problematic part of my code is the following: profile =…
0
votes
3 answers

FirefoxProfile with private mode for Selenium

I'm tying to create multiple windows of one website, so I need new identity for each. Private mode would be nice solution for me, I think. But old ways to do it doesn't give result: firefox_profile =…
dimmy
  • 21
  • 7
0
votes
1 answer

Selenium firefox profile download directory preference not getting implemented

I have the following code profile = webdriver.FirefoxProfile() profile.set_preference("browser.download.folderList", 2) profile.set_preference("browser.download.manager.showWhenStarting", False) …
0
votes
2 answers

how to save site data(like cookies) from whatsapp in selenium python

I already have a question related to this over here but there isn't any response so this question is more "specific" version of that question So my problem is i run my code it opens Firefox window and opens Whatsapp web but it wont go to the chat…
BluTen
  • 65
  • 3
  • 13
0
votes
0 answers

Problems using an existing Firefox Profile on Jenkins

I am having problems using an existing Firefox Profile in Jenkins server. Locally, everything is working fine. I am using the following code block to use the Firefox profile: System.setProperty("webdriver.gecko.driver",…
0
votes
1 answer

stop selenium from creating new firefox profile every launch

I am using selenium and yaml from a code got from a friend that creates a new Firefox profile every launch and I want to use my own profile, not a new profile This is part of the code and i have been searching and trying everything to fix the…
ak20
  • 1
  • 1
0
votes
1 answer

How to force download PDF attachment using Robot Framework + Selenium Library?

In my test automation suite I need to force download of a PDF file. The file in question is a PDF that has mime-type of an application/octet-stream, and furthermore, the server assigns Content-Disposition: attachment; X-Download-Options: noopen to…
0
votes
0 answers

How to download a .rdp file in firefox without download prompt using Selenium java?

I am automating a web application which downloads an .rdp file on clicking a link. I have added the following code to set profile, System.setProperty("webdriver.gecko.driver", "K://Automation//geckodriver-v0.26.0-win64//geckodriver.exe"); …
Q2Dev
  • 85
  • 1
  • 9
0
votes
1 answer

Use custom profile on Zalenium to enable DRM

I am trying to create a custom firefox profile for a remote driver for a Selenium test. Technologies used: Written in Java Zalenium link-to-zalenium File profileDirectory = new File("path-to-firefox-profile"); FirefoxProfile profile = new…
Mr 123
  • 171
  • 4
  • 12
0
votes
1 answer

"SocketError: [Errno 61] Connection refused" Selenium with TOR

So I was using TOR to act as a way of changing my proxies and ip addresses for my webdriver. Here is the code. All dependencies are installed (including Geckodriver and latest version of Firefox). from stem import Signal from stem.control import…
AaravM4
  • 380
  • 1
  • 4
  • 21
0
votes
1 answer

C# fill web form / scratch web page using the current profile / session

I'm trying to play with web forms / loggins, etc. and for this I need to start the browser (chrome, for example) with the current user profile session. I found 2 possible ways of doing this, but I can't finish the code for both of them :) Solution…
johnykes
  • 1,663
  • 2
  • 9
  • 25
0
votes
1 answer

Can two different instances of Firefox Profiles be tracked to the same machine?

I am running some headless tests with Selenium & firefox to login to some website. If I switch between separate firefox profiles in the same browser to login to separate accounts on the website is there any way besides IP tracking to track my…