Questions tagged [firefox-driver]

Firefox driver is included in the selenium-server-stanalone.jar available in the downloads.

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.

30 questions
1
vote
0 answers

Selenium webdriver script is taking more time to execute around 5-7 min when it tries to input text in textbox

i have one screen in which we are able to select 2 option Online Delivery offline delivery and they are label As soon as we select any 1 option then selenium script becomes too slow Next option is to enter input text in phone number which takes…
1
vote
1 answer

How to launch multiple instances of Firefox portable using Selenium FirefoxDriver

I use selenium FirefoxDriver in my tests and I run these tests parallel - in each thread is running separated Firefox instance. Everything works fine when I use normal FireFox, but if I want to run these tests with Firefox portable, the first…
blast3r
  • 69
  • 1
  • 4
  • 8
0
votes
1 answer

Firefox Issue- Exception in thread "main" org.openqa.selenium.SessionNotCreatedException: Could not start a new session

DesiredCapabilities capabilities = new DesiredCapabilities(); capabilities.setCapability("marionette", true); FirefoxOptions option= new FirefoxOptions(); option.merge(capabilities); …
0
votes
0 answers

Why does the Firefox browser open when I use instaPy but nothing happens next?

from instapy import InstaPy insta_username = 'pedram_musavi333' insta_password = '0000' session = InstaPy(username=insta_username,password=insta_password,headless_browser=True) session.login() After executing this code, the Firefox browser opens…
0
votes
1 answer

Python: Function equivalent to chromedriver in firefoxdriver. chromedriver --> firefoxdriver (firefoxdriver gives me syntax error)

I have this two functions: def get_chromedriver(headless = False): import os from selenium import webdriver from selenium.webdriver.chrome.options import Options options = Options() options.binary_location =…
0
votes
0 answers

How to make FirefoxDriver play youtube video automatically?

I have this in my code: Public Shared Async Function SingSongs3() As Task ias.fireFoxDriver.Navigate.GoToUrl("https://www.youtube.com/watch?v=ifCWN5pJGIE") 'ias.NavigateTillComplete("https://www.youtube.com/watch?v=ifCWN5pJGIE") Await…
user4951
  • 32,206
  • 53
  • 172
  • 282
0
votes
1 answer

Unable to create session error using GeckoDriver and Firefox through Selenium and Java org.openqa.selenium.WebDriverException

I'm able to run tests with Intellij but when I run the same tests via Jenkins I get the following error. org.openqa.selenium.WebDriverException: java.net.ConnectException: Failed to connect to localhost/0:0:0:0:0:0:0:1:46285 Build info: version:…
0
votes
1 answer

Firefox Profile unable to automatically download file

I am trying to bypass the firefox download manager window when downloading a pdf file in a selenium test by using firefox profile settings: FirefoxProfile profile = new FirefoxProfile(); …
Tyler Stutson
  • 43
  • 1
  • 8
0
votes
1 answer

Error when I run auto test with browser. How run it?

I need to run autotests. But both in Safari and in FireFox, such an error occurs. Safaridriver cannot be installed in Safari with version 10+. I tried to add drivers for these browsers to the project, I tried to write in the terminal: safaridriver…
NeverSleeps
  • 1,439
  • 1
  • 11
  • 39
0
votes
2 answers

Selenium Java click performed on element did not work

The following appears in my test automation code. It reports that is has worked, but it didn't. Can I break this down & find out why? Actions actions = new Actions(driver); actions.moveToElement(element).click().build().perform(); I have already…
Steve Staple
  • 2,983
  • 9
  • 38
  • 73
0
votes
1 answer

Firefox Webdriver fails with UnreachableBrowserException and blank Screen

I am running webdriver 2.53.1 against firefox 45.9.0ESR on Redhat Linux 6.6. FirefoxDriver object gets created successfully and firefox launches with blank page (about:blank) as expected. But when I do the 'get' to open the url, it fails with…
Sundeep Gupta
  • 1,887
  • 3
  • 24
  • 35
0
votes
1 answer

Unable to use firefox v53 using protractor

I am using protractor to run test and firefox is started giving error suddenly. error: [14:37:20] E/launcher - Unable to find a matching set of capabilities Build info: version: '3.4.0', revision: 'unknown', time: 'unknown' System info: host:…
0
votes
4 answers

Unable to enter a string in the text box. It just opens the browser

I want to open the site www.flock.co and enter a email in the text field.However the program only opens the site and doesnt enter the email in the field. import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import…
0
votes
0 answers

selenium - Exception in thread "main" org.openqa.selenium.remote.UnreachableBrowserException: Could not start a new session

I don't know how to resolve my problem below. I am new on using selenium and I had follow the tutorial step. I am using Firefox 47.0 Windows 10 Selenium standalone server 2.53.0 Here's my code package mypackage; import…
0
votes
1 answer

Selenium FirefoxDriver page load timeout

Some pages are loading really slow and therefore I need to specify some page load timeout.. for example 60 seconds after which the load process will be interrupted. How I can specify page load timeout in my Java application for Selenium…
alexanoid
  • 24,051
  • 54
  • 210
  • 410
1
2