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
-1
votes
1 answer

org.openqa.selenium.firefox.GeckoDriverService.access$000(GeckoDriverService.java:42)

I am trying to run a simple code in eclipse but it is not working. Details: Firefox version - 61.0b4 (64-bit), Jdk - jdk1.8.0_121, Eclipse oxygen import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; public class…
-1
votes
1 answer

Automatically download pdf in firefox gecko driver using selenium java

Can anyone help to create a profile and set options using firefox (gecko driver) to automatically download files in selenium webdriver - java. I have already searched a lot of options googling around, and nothing much worked. So posting my query on…
bhargav desai
  • 119
  • 1
  • 3
  • 12
-1
votes
1 answer

How can I choose which firefox executable to use among multiple firefox binaries through Python selenium

I'm using python (v 3.65) selenium (v3.11.0) on Mac OS X (v 10.11.6) with firefox (v 59.0.3) and geckodriver (v 0.20.1). I have my usual firefox in the Applications folder and a second firefox in another folder. How can I tell python selenium to…
-1
votes
1 answer

Not able to use geckodriver on linux mint 18

from selenium import webdriver from selenium.webdriver.common.keys import Keys from bs4 import BeautifulSoup import urllib import requests import time email = "" password = "" driver = webdriver.Firefox() I am using linux mint 18 and after…
-1
votes
1 answer

Unable to Navigate to URL with Selenium Gecko WebDriver

I have this funny bug happening to me today. I've been using Selenium for years already and never had an issue navigating to URL (via driver.navigate().to(url)) however today I'm attempting to navigate to a specific URL and I find that after…
S.O.S
  • 848
  • 10
  • 30
-1
votes
1 answer

How to do automation testing of your website on firefox ? (webdriverio)

I am new to automation testing. I followed the steps given on "http://webdriver.io/guide.html" everything went great . I installed node.js selenium-server-standalone-3.5.3 geckodriver chromeriver My script goes like this: var webdriverio =…
kanishka
  • 156
  • 1
  • 10
-1
votes
1 answer

WebDriver cannot be resolved to a type for Eclipse oxygen with Selenium 3.8.1 in Windows 10

There is an existing question for the same problem but that question was not completely answered, so posting new question. I am new to selenium and trying to execute the very basic script, but getting the compilation errors. I am using Eclipse…
Prabhat
  • 33
  • 9
-1
votes
1 answer

Where is my log files located?

While visiting site ,browser sends log file which contains information like ip address and username of PC, click events and so on to server. can i see that log file location and how can i edit it? I want The path to file where server should write…
D G
  • 176
  • 1
  • 8
-1
votes
3 answers

Selenium Geckodriver and ChromeDriver not working

Running OS 10.12.6 Selenium with Python 3.6 bindings Despite my best efforts I can't seem to get either working with Selenium. Here's the error I get: Geckodriver error: Traceback (most recent call last): File…
C. Gaboury
  • 58
  • 1
  • 7
-1
votes
2 answers

how to turn off the gecko driver (0.18v) logs in selenium 3.5.3

. Here are these logs that are continuously coming till the end line of code and its very irritating. i need help to turn off these logs
-1
votes
1 answer

How to fix “Permission denied to access property "invoke”"?

Code - Select Gender = new Select(driver.findElement(By.xpath("//select[@id='gender']"))); Gender.selectByValue("Male"); Error - `Exception in thread "main" org.openqa.selenium.WebDriverException: **Permission denied to access property…
Avinmita
  • 69
  • 1
  • 9
-1
votes
3 answers

I can't launch Chrome driver without specifying path

I keep getting an error message as well as others in Selenium Python when I use driver = webdriver.Firefox() driver.get('http://stackoverflow.com') Error message: selenium.common.exceptions.WebDriverException: Message: 'geckodriver' executable…
-1
votes
4 answers

Unable to find element in webdriver

I got this exception or error when I rum my script: "Unable to locate element: *[name='password']" I have tried with different locators but every time I get the same error. Here is my script import org.openqa.selenium.By; import…
nirmala
  • 39
  • 1
  • 1
  • 10
-1
votes
1 answer

How to set up python 3.6.2 with selenium and geckodriver?

Hi guys I'm in need of assistance. So i have the latest version of python and i was able to push pip install selenium. When i run a script it says this message Traceback (most recent call last): File "C:\Users\huHMONGous\Desktop\Python…
huhmongous
  • 1
  • 1
  • 2
-1
votes
1 answer

Unable to create new remote session with latest selenium server and geckodriver

I am using the latest selenium standalone version as of version 3.4 and the newest geckodriver as of version v0.16.1. I am unable to start a new remote session. I always get: Unable to create new remote session. desired capabilities = Capabilities…
Black
  • 18,150
  • 39
  • 158
  • 271