Questions tagged [firefox-marionette]

Marionette is a remote-control for Firefox and other Mozilla products. It is similar to Selenium.

Marionette is an automation driver for Mozilla's Gecko engine. It can remotely control either the UI or the internal JavaScript of a Gecko platform, such as Firefox or Firefox OS. It can control both the chrome (i.e. menus and functions) or the content (the webpage loaded inside the browsing context), giving a high level of control and ability to replicate user actions. In addition to performing actions on the browser, Marionette can also read the properties and attributes of the DOM.

104 questions
0
votes
3 answers

Firefox 48 and Selenium timeout issue

I am unable to run my tests on Firefox 48 using latest Selenium versions (2.53, Selenium 3 beta). Please explain the configuration needed and the code to use to successfully run tests on Firefox 48. I have pointed to the geckodriver and tried to…
0
votes
2 answers

I am getting error "java.lang.NullPointerException"

I am using selenium Webdriver for the testing web application. I am using marioette driver for the same as I am havin firefox 48.0 since yusing the same the web page gets open however I am not able to put the values in the text box it gives the…
Ashwini.J
  • 177
  • 2
  • 14
0
votes
1 answer

How to solve "java.lang.NoClassDefFoundError: org/json/JSONException"

I am using marionette driver for testing with selenium. when I run the code it gives me the error: java.lang.NoClassDefFoundError: org/json/JSONException. Also gives error : Found argument '--webdriver-port' which wasn't expected, or isn't valid…
0
votes
2 answers

java.lang.NoClassDefFoundError when i run Marionette driver for FF 47.0.1

I'm using Marionette driver for first time, when i run test browser window opens and it hits URL specified in test(code) but it does not enters any text in text field and throws following error.?? java.lang.NoClassDefFoundError: …
speedysinghs.
  • 71
  • 1
  • 6
0
votes
5 answers

Geb: How to use Marionette instead of selenium Webdriver?

It is known issue that, Firefox version 47.0.1 is not compatible with Selenium latest version. Even Firefox is announcing to use Marionette instead. Can someone give some details instruction on how to use Marionette with Geb? As a maven project, I…
Mahbub Rahman
  • 1,295
  • 1
  • 24
  • 44
0
votes
2 answers

Get browser version using Selenium WebDriver and Ruby

Trying to extract the browser version without making a system call. Below is my Ruby code. #!/usr/bin/env ruby require "selenium-webdriver" # Tell the Ruby bindings to use Marionette. # This will not be necessary in the future, # when Selenium…
0
votes
1 answer

Capybara setting a field results in 'Attempt to set readonly element with value'

With Firefox 47.0, I switched to the Marionette driver. Using Capybara, when I try to fill in a field, Capybara responds with 'Attempt to set readonly element with value' and doesn't set the field value. Querying the readonly flag gives a 'false',…
Bart
  • 3
  • 2
0
votes
1 answer

Updating to Marionette Driver C#

Ok so as many of you fellow webdriver testers know the release of Firefox 47 has broken the Webdriver.FirefoxDriver. All the documentation I can find tells me that the new FirefoxDriver is Marionette. So I have downloaded the latest executable from…
Buster
  • 685
  • 1
  • 5
  • 28
0
votes
0 answers

MarionetteDriver Opens browser and hangs but does not error out

This is the only output I get when I run the tests. Do I need to add the geckodriver.exe somewhere in my build path or linked resources? Console Output: Jun 16, 2016 4:17:38 PM io.github.bonigarcia.wdm.BrowserManager getLatest INFO: Latest version…
Anthony
  • 80
  • 1
  • 10
0
votes
1 answer

Can Python launch Firefox with a specific profile?

I'm trying to write some automated tests for Firefox using Marionette and its Python client, but Python doesn't seem to be able to launch Python with a specified profile. This is a problem because I need two Firefox profiles for the test. I'm trying…
Inglonias
  • 468
  • 1
  • 5
  • 18
0
votes
1 answer

WebDriver Marionette from C#?

Will Marionette be supported from C#(.NET, dotnet)? If not yet, is there any plan to do so by release or soon? I only found Python and JS clients mentioned in https://developer.mozilla.org/en-US/docs/Mozilla/QA/Marionette. I also reviewed current…
TKH
  • 11
  • 3
-1
votes
1 answer

Getting error "org.openqa.selenium.WebDriverException: java.net.ConnectException: Connection refused:"

I am using selenium webdriver for the testing application. i am using using Marionettedriver for the browser. however when I run the code it gives the error "org.openqa.selenium.WebDriverException: java.net.ConnectException: Connection refused:" I…
Ashwini.J
  • 177
  • 2
  • 14
-2
votes
1 answer

Action class alternative for marionette driver

Below is code to draw a rectangle in selenium webdriver which i was using, but after switching to marionette driver, it stopped working as Action class is still not supported, is there any other alternative, like in javascript, robot class is not…
-3
votes
2 answers

Selenium - FireFox/Marionette driver is too fast to control

After updating to the Firefox to version 52, i had to update gecko driver to v17. But all my previous scripts fail in Firefox, becase it is too fast and not wating for element on the page to load. I am now forced to add Thread.sleep wait for each…
1 2 3 4 5 6
7