Questions tagged [selenium-firefoxdriver]

Selenium FirefoxDriver is a WebDriver implementation that controls the Firefox browser using a Firefox plugin.

Firefox driver is included in the selenium-server-stanalone.jar available in the downloads. The driver comes in the form of an xpi (firefox extension) which is added to the firefox profile when you start a new instance of FirefoxDriver.

Pros

  • Runs in a real browser and supports Javascript
  • Faster than the InternetExplorerDriver

Cons

  • Slower than the HtmlUnitDriver.

References:

1025 questions
-1
votes
1 answer

Selenium-Firefox Driver Issue (Firefox Driver cannot be resolved to a type

I am trying to write simple selenium scripts using maven ,But getting an error with firefox driver despite downloading all the dependent selenium jars through maven. Refer the screenshot below: Any help is deeply appreciated enter image description…
-1
votes
2 answers

How to solve class version exception

Getting exception while executing written code. Java is a high-level, class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible. I have written below code and that is showing error Java…
-1
votes
1 answer

How to find XPATH and CSS in Mozilla firefox v58.0.1 ? Not able to find any Firebug etc

How can I find XPath and CSS in Mozilla Firefox 58.0.1? I can't find Firebug. I tried adding the add-ons but it does not allow me to do so. I'm using Selenium 3.8.1.
-1
votes
1 answer

Why URL not working with Selenium in FirefoxDriver?

I have a Selenium, TestNG and maven application. If I run mvn intergration-test the Firefox browser opens but URL not working. Also getting the below error in the console Failed to connect to binary FirefoxBinary(C:\Program Files (x86)\Mozilla…
-1
votes
1 answer

Will Chrome add-ons be fully compatible with Firefox Web Extensions platform?

I'm wondering whether Chrome add-ons will be compatible with Firefox Web Extensions platform or not.
-1
votes
3 answers

How to invoke firefox browser installed in other driver than C drive using Selenium?

How to invoke Firefox browser installed in other driver than "C" drive using Selenium? I have installed Firefox in D drive rather than C driver. Is there a way to invoke browser using selenium in this context? EDIT 1: Am not concerned with location…
-1
votes
1 answer

No Browser Open while launching Firefox 47.0.1 : Robot Framework

WebDriverException: Message: Expected browser binary location, but unable to find binary in default location, no 'firefox_binary' capability provided, and no binary flag set on the command line Test Environment Windows 7 Python…
-1
votes
1 answer

Selenium - Issue while trying to select from a dropdown

I need a little help. I'm trying to run an automated test on the website http://zara.com and i want to select the language from the language dropdown. This is the HTML code from Zara. https://prntscr.com/g6hdiv This is the code i've tried with…
-1
votes
1 answer

Not able to select the value from drop down list by using Select method in Selenium

I not able to select the options from dropdown list by using 'Select' method. Here is my gmail account creation code. enter code here package samples; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import…
-1
votes
1 answer

How to click to a button which can be visiable after an Animation?? Selenium Webdriver Java

first of all , You can check the video and see to which button I am trying to click. Here is the 15 sec Video: https://evrenos-hotmail.tinytake.com/sf/MTc4NTkzNV81ODM3MDA5 that button cannot be clickable by directly trying to click by…
-1
votes
1 answer

File download in Selenium webdriver using robot class

When I Clicked download button using it opens a download pop up in firefox. Its running correctly and saving the files but when i iterate in loop its not saving instead its opening the file.Any solution for below mentioned code it ? for (int j =…
kishor
  • 3
  • 1
  • 5
-1
votes
1 answer

How to open a new window instead of new tab

I am trying to navigate to other window. But firefox is opening new page in new tab, instead of new window. I check the checkbox check and uncheck both. System.setProperty("webdriver.firefox.bin", "C:\\Program Files (x86)\\Mozilla…
-1
votes
1 answer

Selenium RC is not opening url given in my code

The RC launches the firefox browser but it tries to open the following…
-1
votes
1 answer

Unable to wait in page when partial page is getting loaded due to Ajax

I have some controls in html's section tag and those controls load when ajax request completed. Now there is a scenario where ajax is loaded but controls are not appearing on the page and I want to stop code execution till all controls are loaded…
-1
votes
1 answer

is there any alternative to send_keys() for input text field in python-selenium?

I want to send data to a text field in html page using selenium python .Is there any method other than send_keys() using python-selenium?
S42
  • 9
  • 2