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

Undefined property: stdClass::$ELEMENT

I found a tutorial on youtube about the selenium webdriver in windows using php. I already setup the xampp, installed some dependencies, and others like the jar files and geckodriver. And when I execute the php code. I got this error. Notice:…
Raven
  • 41
  • 1
  • 2
  • 9
-1
votes
1 answer

java.lang.NoSuchMethodError: org.openqa.selenium.firefox.FirefoxOptions.merge(Capabilities) when trying to merge DesiredCapabilities using Selenium

When I try launching new Selenium/Firefox instance with DesiredCapabilities and FirfoxOptions I get the following code: Exception in thread "main" java.lang.NoSuchMethodError:…
-1
votes
1 answer

for some reason I do not have the correct permissions in python in a file when I do in terminal

this is my code as of now: from selenium import webdriver import bs4 ask_page = input('retrieve what dial: ') if ask_page == '': ask_page = 'bm056' driver =…
-1
votes
1 answer

org.openqa.selenium.WebDriverException: Permission denied to access property "__eventWrappers1573722857587"

I am seeing the error while trying to run the findElement method. I am using the Selenium version 3.141.59 and firefox 45.5.1 WebElement weCustomizeDashboardBtn = this.driver.findElement(By.xpath("//h1[text()='Customize Dashboard']"); 14-11-2019…
-1
votes
3 answers

How to understand the webdriver and get() in Selenium?

How to print all html/css tags of a webpage using Selenium: from selenium import webdriver browser = webdriver.Firefox() browser.get('http://seleniumhq.org/') When I do: print(browser), it prints…
-1
votes
1 answer

Warning while running Firefox in selenium

While running a selenium java program I got a Warning stated as follow: (firefox:8841): WARNING : 11:35:06.806: No marshaller for signature of signal 'PropertiesChanged' I am using CentOs 7. I don't have any clue about it. I tried googling it but…
-1
votes
2 answers

GeckoDriver and Directory

I apologize if this was answered already, but I could not find any posts that address my problem specifically. I'm a beginner at this. The following is my code: package com.pluralsight; import org.openqa.selenium.firefox.FirefoxDriver; import…
A-L
  • 9
  • 4
-1
votes
2 answers

GeckoDriver is not entering value for Firstname field within Firefox browser

Firefox driver is not entering a value for Firstname field. I'm trying the following: driver.findElement(By.xpath(//*[@id=\JNHGYHG\"]")).sendsKeys("Hello"); Can someone help me with this?
-1
votes
1 answer

The element type "link" must be terminated by the matching end-tag "" while trying to parse PageSource from Selenium through getPagesource

I am generating page source through selenium getpagesource() method for firefox and ie browser , but pagesource is not getting parse and message is displayed as: The element type "link" must be terminated by the matching end-tag "" like…
-1
votes
1 answer

Geckodriver will not open

I am trying to launch FireFox with geckodriver and go to instagram.com. When I run my code, it launches FireFox but just sits at a blank tab and won't load instagram. I have the path to geckodriver set and I have selenium installed. from selenium…
Monchao
  • 15
  • 10
-1
votes
2 answers

error“ org.openqa.selenium.WebDriverException: java.net.ConnectException: Failed to connect to localhost/” with GeckoDriver and Firefox

Hello i can't test my junit this my error when i try to compile if someone can help me thank you org.openqa.selenium.WebDriverException: java.net.ConnectException: Failed to connect to localhost/0:0:0:0:0:0:0:1:18218 Build info: version:…
Y.Ben
  • 1
  • 1
-1
votes
1 answer

All Geckodriver Downloads

I can't seem to find the webpage where all of the versions of geckodriver are listed, so that we can download them. I believe they used to be in the Mozilla FTP, but now I can't find it. I've tried searching Google and even on here. I know there was…
oldboy
  • 5,729
  • 6
  • 38
  • 86
-1
votes
1 answer

Selenium WebDriver Java keyDown not working

I'm learning Selenium WebDriver and have one problem. I want to search on amazon website for "car" with uppercaste. I use keyDown, but it does not work. The test programm fits only "car" with lowercase. HTML code:
-1
votes
1 answer

Selenium: Exception in thread "main" org.openqa.selenium.NoSuchSessionException:

package facebook; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; public class facebook { public static void main(String[] args) { …
-1
votes
1 answer

Selenium webdriver crashing Firefox during unittests

How do you determine why Firefox is crashing when run from inside some Django unittests via Selenium? My testcase is: from django.contrib.staticfiles.testing import StaticLiveServerTestCase from pyvirtualdisplay import Display from selenium import…
Cerin
  • 60,957
  • 96
  • 316
  • 522