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

Landing Page Not Loading - Selenium Web Form Automation

Creating a script that will log in into the site below and automatically log values into a web form. The problem is that once I login, the landing page is blank (i.e it loads headers but that's it). My code is below: profile =…
0
votes
1 answer

Selenium WebDriver downloads .msg type on Firefox

I setup a Firefox Profile to download files on Firefox. This is my code: String mimeTypes = "application/zip,application/octet-stream,application/vnd.ms-outlook"; FirefoxProfile profile = new…
Ragnarsson
  • 1,715
  • 7
  • 41
  • 74
0
votes
1 answer

How can I create a custom firefox profile on a centos vm

I have created a centos vm. Installed maven, firefox on it and placed selenium automation code to test my web application on it. The only issue is my automation code works on a specific profile where I need to enable the 'Open new windows in a new…
Deepika
  • 13
  • 4
0
votes
1 answer

Firefox Profile does not work when I copy it to CentOS

This is a continuation to an earlier question (Authenticating Selenium WebDriver (Java) with .p12 certificate). I found a partial solution to that question, but am stuck here. I created a firefox profile named "eAgency-Client1", following directions…
0
votes
1 answer

Selenium webdriver (java) - file download dialog

I have following @BeforeClass: @BeforeClass public static void setUpClass() { FirefoxOptions options = new FirefoxOptions(); options.setBinary("C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe"); …
pburgr
  • 1,722
  • 1
  • 11
  • 26
0
votes
1 answer

How to set Firefox Profile in C# to accept untrusted certificates?

I was looking for solution on Stack, but nothing is working in my case. I tried : public RemoteWebDriver runDriver() { FirefoxDriverService service = FirefoxDriverService.CreateDefaultService(); …
Prus
  • 23
  • 6
0
votes
1 answer

Running headless Firefox WebDriver on Jenkins (Windows OS)

My test cases involve export/download the excel files from web pages. For which I am using Firefox profile to accept the downloads when the download dialog popup on windows. The following code is working when I execute my test on local windows.…
0
votes
1 answer

Unable to load default firefox profile using python-selenium

I am having trouble loading the default firefox profile using python-selenium. Here is my code: from selenium import webdriver profile = webdriver.FirefoxProfile("/home/Rudder_Analytics/.mozilla/firefox/79z12gvt.default") driver =…
0
votes
1 answer

C# Selenium open temporary Firefox Profiles how to stop it?

How to open same selenium profile none temporary copy from my profile I need the same firefox profile in C# I already read this article: How to stop Selenium from creating temporary Firefox Profiles using Web Driver? But it's not work with me…
0
votes
1 answer

Preferences set to avoid download dialog in firefox is not working for pdf

I have tried to set all possible preferences to avoid open and save file dialog while download files using selenium. It is working for text files but not for PDF files Below are the preferences set: String downloadPath = ; …
0
votes
2 answers

How to download and save excel and pdf file from pop-up in a desired location using Selenium written in C#

I would like to know if there is any way for the automated tests to download the file (excel and pdf in my case) and save in a desired location using selenium web driver. I tried using Firefox profile, but that didn't work. When the test is running,…
0
votes
0 answers

Python automatic web test tool with selenium: download file in firefox

I have a web test tool developed with python using selenium 3 api. I run it in Firefox. There's a part in the website permits to download a tar.gz file. I want that the test tool download the file in a specified local folder without displaying popup…
Kallel Omar
  • 1,208
  • 2
  • 17
  • 51
0
votes
1 answer

Will the browser opens every time with the same profile after setting it in selenium code

I have done some coding to set firefox browser profile to download the file automatically into the download directory. When the browser launches by selenium webdriver it loads the settings which i have set. Will the browser launches with same…
sasikanth
  • 129
  • 3
  • 12
0
votes
2 answers

Selenium: how to set mobile mode on Firefox Driver

I have worked on Selenium Firefox Driver with Java I was seach for set mobile mode. but it just Code for ChromeDriver. I know we will FirefoxProfile but i'm not clarify code on java so How can i setup Mobile mode for FirfoxDriver. Thanks
huan le
  • 261
  • 5
  • 10
0
votes
0 answers

Python- selenium http authentication not working

I tried to authenticate a webpage(oracle BI dashboard) using Python selenium webdriver for Firefox. The module is running on CentOS. I wrote the below code: from selenium import webdriver from selenium.webdriver.common.keys import Keys profile =…
1 2 3 4 5
6