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
3 answers

Which version of GeckoDriver should I use with Firefox 32-bit on a Windows 10 64-bit system?

Our client requires us to have the most recent version of Firefox for testing their site, so we're upgrading from Firefox 44 and Selenium 2.53.0 (for Java) to Firefox 51.0.1 and Selenium 3.0.1. We're attempting to use the latest GeckoDriver version…
0
votes
0 answers

Selenium Webdriver Not Connecting HTTPConnect Error

Can someone help me with the below error while trying to open a url in firefox 51.0 through selenium webdriver 3.0 and Firefox 51.0. Below is the code Im using and exception i received. import org.openqa.selenium.WebDriverException; import…
0
votes
2 answers

Selenium does not work correctly on server

I have an script with Selenium which was working on both pc and server correctly. A few days ago it stopped over server and still I have not figured out what is wrong. I set both of Firefox (41.0.2) and Selenium (2.53.5) similar over pc and local.…
Moohebat
  • 455
  • 1
  • 6
  • 15
0
votes
1 answer

Execute selenise runner on Firefox

I am using selenise runner to run script in different browsers. I am using this config file: firefox: C://Users/Desktop/geckodriver.exe highlight: Yes baseurl: https://example.com/ set-speed: 1000 timeout: 30000 driver: firefox xml-result:…
0
votes
1 answer

Element is not currently interactable and may not be manipulated on Robot Framework

I have a form with five fields and I am trying to input text into the last field. An example of my script is: [input] [id=combo-1234-textfield] [text] I already got the ID but when it tries to input text on the ID found, it says the…
0
votes
3 answers

Unable to open firefox using selenium-python-geckodriver

Newbee here! Help out guys! Environment: Windows 10.1 (64Bit) + Selenium + Python + geckodriver.exe (latest version - v0.13.0 - https://github.com/mozilla/geckodriver/releases) Issue: Unable to open the firefox browser using the code mentioned…
Vivek22
  • 836
  • 1
  • 12
  • 19
0
votes
1 answer

C# Geckodriver / Selenium 3.0 - Mozilla 47.0.1 stops itself

Hi I'm using Selenium Web Driver and Geckodriver to automate a task on Mozilla. When Geckodriver lauches an instance of Mozilla, there is no problem : Account Login Click on buttons Import file (Problem appears after that). Next code isn't…
Ashenson
  • 9
  • 1
0
votes
0 answers

Selenium firefox webdriver with virtualenv: Exec format error

I am using Selenium and Virtualenv in Ubuntu14.04 to scrape some code on webpage. After making a virtualenv directory, while activating virtualenv using source bin/activate, I installed selenium, headless firefox, pyvirtualdisplay and firefox…
heyzude
  • 363
  • 1
  • 4
  • 20
0
votes
0 answers

Firefox crashes on close/quit - Pytest Selenium with RemoteWebDriver

I searched and found very similar mentions in older questions from several months ago which seemed to suggest problem should have been fixed by now, but it is still occurring for me. Pytest on my Linux server - Build info: version: '3.0.1',…
0
votes
3 answers

Unable to Run Selenium with Firefox (Python)

I am completely unable to get Selenium (3.0.1) to work with Firefox (50.1.0) after the update. Here is the code that I am running with the associated errors: from selenium import webdriver website = 'www.google.com' driver = webdriver.Firefox()…
0
votes
1 answer

Selenium UseLegacyImplementation False WebDriverException: ReferenceError: $ is not defined

I've just upgraded by Selenium Test Project to use the new version 3.0.1 from 2.53.0. I'm now using Geckodriver v0.11.1 and am currently testing exclusively on Firefox, which is version 46.0.1. Before the upgrade I had code that looked like…
David Rogers
  • 2,601
  • 4
  • 39
  • 84
0
votes
0 answers

expected browser binary location, but unable to find binary in default location

below is my code from selenium import webdriver from selenium.webdriver.firefox.firefox_binary import FirefoxBinary binary = FirefoxBinary('C:\Program Files (x86)\Mozilla Firefox\firefox.exe') driver = webdriver.Firefox(firefox_binary=binary) i am…
GAURAV CHHABRA
  • 87
  • 2
  • 2
  • 9
0
votes
1 answer

what is the latest version of geckodriver that is stable with windows 7 sp1?

It's official, the site I am testing is only supported in firefox. I need a stable version of geckodriver, and as of this writing... geckodriver-v0.11.1-win64.zip Is not it. Is there extra configuration that is needed with gecko that is native in…
TangibleDream
  • 601
  • 8
  • 29
0
votes
2 answers

Why do the xpath locators differ for chrome and firefox/firebug in Selenium test

in chrome I get a xpath value: //*[@id='user_change_pw_form']/div[3]/span and for the same element in firebug I get: /html/body/div[2]/form/div[3]/span why do I have to speparate the xpath queries like that to get one and the same element in…
Leder
  • 396
  • 1
  • 5
  • 21
0
votes
1 answer

OpenQA.Selenium.WebDriverException : Cannot find a file named '...\bin\Debug\getAttribute.js' or an embedded resource with the id 'getAttribute.js'

I have some tests that use Geckodriver to run a test in Firefox. Today, Firefox updated to version 50 on my development machine. I saw this error: System.NotImplementedException : GET /session/ffffffff-ffff-ffff-ffff-ffffffffffff/element//attribute/…
Jacob Krall
  • 28,341
  • 6
  • 66
  • 76