python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
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 10
Code:
url=['https://www.tradingview.com/markets/stocks-usa/market-movers-large-cap/']
catergories=[...
Roclusa chieng
Votes: 0
Answers: 2
Selenium loads profile only in the deprecated way (Python)
I tried the recommended method of loading a profile, but it's not working for me. It simply opens an empty profile.
from selenium.webdriver import Firefox
from selenium import webdriver
from selenium....
Leo
Votes: 0
Answers: 1
Unable to load existing firefox profile with selenium 4's option.set_preference in python
I have this code that works and loads the firefox profile
from selenium import webdriver
from selenium.webdriver.firefox.options import Options
from selenium.webdriver.firefox.firefox_profile import F...
Tyler
Votes: 0
Answers: 1
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 ....
José Paulo Oliveira Filho
Votes: 0
Answers: 0