Questions tagged [geckodriver]

GeckoDriver is Mozilla's WebDriver implementation for the Firefox web browser, and works best with Firefox versions 48 and onwards.

Proxy for using W3C WebDriver-compatible clients to interact with Gecko-based browsers.

This program provides the HTTP API described by the WebDriver protocol to communicate with Gecko browsers, such as Firefox. It translates calls into the Marionette automation protocol by acting as a proxy between the local- and remote ends.

See also:

1443 questions
0
votes
0 answers

Python-Selenium3: open browser on Firefox 45

I developed an automatic test tool with python 2.7 and using selenium 3.0.1.It works fine on Firefox 49. I need that it works also with Firefox 45. I tried it but the tool finds problem to open the browser. The piece of script is like the following:…
Kallel Omar
  • 1,208
  • 2
  • 17
  • 51
0
votes
4 answers

Firefox driver can't start for Selenium 3.0.1 with FF49 and Python

i have following Selenium Webdriver script with Python. But i got error: from selenium import webdriver from selenium.webdriver.common.desired_capabilities import DesiredCapabilities caps = DesiredCapabilities.FIREFOX caps["marionette"] =…
Mahsum Akbas
  • 1,523
  • 3
  • 21
  • 38
0
votes
1 answer

How to run selenium script with latest firefox browser on geckodriver with selenium 2.53.0?

I am trying to run automation script with following configurations. Configurations : Selenium-java 2.53.0 Selenium-server 2.53.0 JRE 7 Firefox 49.0 geckodriver-v0.11.1-win64 Firefox is opened but not script is not able to enter URL. Please…
Sagar007
  • 848
  • 1
  • 13
  • 33
0
votes
3 answers

geckodriver saying it needs to be set in path

I've been reading through all the answers to this problem, but I still can't solve it. I downloaded and extracted geckodriver.exe to "C:\rtemp". I'm using windows, so I've added "C:\rtemp\geckodriver.exe" to the Path. When I try to run: ff_caps =…
ChrisG29
  • 1,501
  • 3
  • 25
  • 45
0
votes
1 answer

Firefox stopped working when moving from selenium 3 beta 2 to new version

Firefox stopped working when I try to upgrade from selenium 3 beta-2 to any new version. I tried selenium 3 beta3 and 4 and selenium 3.0.1 Below is what I use: Firefox 48.0.2 and I also tried Firefox 49.0.2 Geckodriver v0.10.0 Selenium 3.0.1 and I…
0
votes
0 answers

Firefox opening blank page when launching browser

Firefox opening blank page when launching browser using Selenium Eclipse with Ruby. require "selenium-webdriver" driver = Selenium::WebDriver.for :firefox driver.navigate.to "http://google.com" Version selenium 3.0, Firefox 49.0.2, Geckodriver…
Joe12
  • 69
  • 1
  • 12
0
votes
1 answer

Getting error xception in thread "main" java.lang.IllegalStateException

I am new to selenium web driver, while compiling a script to open a new browser in MAcOS.. I am getting this error: exception in thread "main" java.lang.IllegalStateException: The path to the driver executable must be set by the…
NMK
  • 11
  • 1
0
votes
2 answers

Geckodriver not starting on Mac OS X

I've written Java 8 + GUI in Swing + Selenium 3.0.0-beta (to get some data from web) application (IDE: Intellij Idea), exported to .jar - it works correctly on Windows 10, Windows 7 with JRE installed. Unfortunately i have to start it on Mac - it…
gooornik07
  • 99
  • 12
0
votes
2 answers

Having FAILED CONFIGURATION: @BeforeClass setUp and FAILED CONFIGURATION: @AfterClass tearDown java.lang.NullPointerException errors

I'm using selenium 3.0.0-beta4 version. Tried to configure settings for geckoDriver on my project. I used Maven and TestNG along with java. import java.util.concurrent.TimeUnit; import org.testng.annotations.*; import org.openqa.selenium.*; import…
0
votes
0 answers

Selenium test on VM with Geckodriver

Hi I have been trying to run a test on a virtual machine. I have gone through the Internet and none of the solutions worked for me. I want to open firefox on Windows virtual machine. Here is my code: @BeforeTest public void launchapp() throws…
k.horde
  • 149
  • 3
  • 12
0
votes
1 answer

How to ByPass/Ignore Untrusted Certificate Error in firefox 48 while using Selenium Webdriver 3.0 beta4

I am trying to use Selenium stanalone 3 beta4.jar + FireFox48 + Geckodriver on a RD machined and below are problem I am observing : i) I am not able to bypass or Ignore the Certificate Security Error for my application below is the piece of code I…
0
votes
1 answer

Selenium 3 firefox is not going to the given url

I'm new with using Java, Selenium en the Webdriver I use: selenium 3 beta3, Java jdk1.8.0_101 and firefox 48.01 Also I use the Geckodriver because that is needed for working with sel3. I am trying to open a url. Opening the browser is working. The…
Allan
  • 13
  • 1
  • 5
0
votes
1 answer

Setting up simple test with FF49 and Selenium 2.53.0

I need to upgrade my application compatibility to Firefox 49 (enterprise policy), so I need to upgrade my tests so that they use FF49 (previous version was 40). NB. it's a portable version (I don't know if that changes anything) I tried setting up a…
GournaySylvain
  • 461
  • 1
  • 3
  • 16
0
votes
2 answers

selenium script not working anymore

I used to have a selenium script code in Python for a firefox website that worked fine.After a while I updated Firefox (48) and selenium 2.9.1.1, python is 3.5.0 the code, # -*- coding: utf-8 -*- from selenium import webdriver from…
krifur
  • 870
  • 4
  • 16
  • 36
0
votes
0 answers

How to add a folder path to a system environment variable

I'm writing a program that uses selenium. Currently i don't think the firefox webdriver works with the current version of selenium, so I downloaded the marionette driver(wires.exe) that works well with selenium. For the wires.exe to work, it's…
HackAfro
  • 720
  • 1
  • 12
  • 28