Linked Questions
0
votes
0
answers
705
views
Is possible to run headless Selenium under WSL (Linux under Windows)? [duplicate]
My question is if it is even possible to run headless browser (no matter if under WSL or Linux Server without XWindows)?
I have program in Python for Selenium and I downloaded and added path to ...
1
vote
0
answers
350
views
How to fix (selenium) error "unable to find a matching set of capabilities" on raspberry pi 3b+ [duplicate]
I want to make selenium work on my raspberry pi 3 b+ which has raspbian lite installed in order to refresh a browser page. But I receive the error "unable to find a matching set of capabilities" even ...
2
votes
0
answers
272
views
SessionNotCreatedException at / Message: Unable to find a matching set of capabilities [duplicate]
I am trying to deploy a app (selenium with geckodriver python3).
I am getting following trace back:
Traceback:
File "/app/.heroku/python/lib/python3.6/site-packages/django/core/handlers/exception....
1
vote
0
answers
24
views
Raspberry Debian run on boot fails but manuel run works perfectly [duplicate]
Run on boot fails but script works perfeclt well on manuel. SO THIS QUESTION IS NOT A DUPLICATE Im trying to automate an instapy script with raspberry but when i try the run on boot options all of ...
40
votes
7
answers
96k
views
selenium.common.exceptions.SessionNotCreatedException: Message: Unable to find a matching set of capabilities with Firefox 46 through Selenium
I must have some versions here that don't match up since I can't get Selenium with Python to fire up a Firefox web browser. I'm using an older version of Firefox because other people in here have the ...
4
votes
1
answer
11k
views
How can Geckodriver/Firefox work without Marionette? (running python selenium 3 against FF 53)
I'm seeing a bizarre "untrusted cert" error only on selenium-controlled firefox pop-ups. Very specific. To solve this problem, various google results suggested turning off marionette, like so:
from ...
1
vote
2
answers
3k
views
org.openqa.selenium.WebDriverException: Error forwarding the new session cannot find : Capabilities {acceptInsecureCerts: true with Firefox
I have Windows 10 - 64, Firefox 61.0.2, Java installed. I'm executing my tests with selenium-grid and selenium-server-standalone-3.11.0.jar, and geckodriver 21.0, but when I run it, the test shows the ...
2
votes
1
answer
3k
views
selenium.common.exceptions.WebDriverException: Message: Failed to find firefox binary. You can set it by specifying the path to 'firefox_binary'
I want to know how to use selenium.
to scrape dynamic page.
Is there some relation to installing Firefox?
from selenium import webdriver
driver=webdriver.Firefox()
selenium.common.exceptions....
1
vote
3
answers
3k
views
Selenium, Python, and Geckodriver throwing "Unable to find a matching set of capabilities"
I know this is a duplicate of previously asked questions. But I cannot for the life of me get this to work. I've added it to my path. I've set the executable path. I've tried multiple versions of the ...
2
votes
1
answer
1k
views
Message: Unable to find a matching set of capabilities error using Selenium and GeckoDriver while loading on live server
I have to build an web application on a linux webserver that will use selenium with firefox . When I run the application the the linux server "localhost:5000" it works perfectly fine . But when i ...
1
vote
2
answers
1k
views
WebDriverException: Message: Can't load the profile. Possible firefox version mismatch. You must use GeckoDriver instead for Firefox 48+with Selenium
I tried to follow an example how to parse websites via python and selenium.
But I am running always into the following problem: calling the function webdriver.Firefox
opens a firefox instance, but no ...
-1
votes
1
answer
433
views
Why can't run geckodriver in selenium?
Download chromedriver and extract it.
from selenium import webdriver
driver = webdriver.Chrome(executable_path='/home/debian/Downloads/chromedriver')
It works fine.
Now to test geckodriver for ...