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

Is there anyway to automate actions with this page with headless selenium firefox?

I was running scripts (automated payments) for the previous version of this portal However, they changed the portal, and now whenever I try to go for example to the next screen with my script the page says that something went wrong. I assume it is…
0
votes
1 answer

Protractor: how to disable marionette debug mode?

here is my protractor config exports.config = { rootElement: '[ng-app="myapp"]', framework: 'jasmine', seleniumAddress: 'http://localhost:4444/wd/hub', specs: ['./assets/e2e/**/*protractor.js'], SELENIUM_PROMISE_MANAGER: false, baseUrl:…
Majesty
  • 2,097
  • 5
  • 24
  • 55
0
votes
0 answers

Firefox not taking profile from selenium grid nodeconfig

I've specified in my nodeconfig.json for firefox to use the default profile instead of creating a new one every time. However, it still creates a new profile each time, as shown in line 3 1530174032396 geckodriver INFO geckodriver 0.20.1…
0
votes
1 answer

How to resolve 'ImportError: No module named marionette_test'

In my Python script I am trying to set some phone settings through Marionette driver. I am importing the following: from marionette_driver import By from marionette_driver import Wait from marionette import Marionette Then I am attempting to open a…
NurShomik
  • 237
  • 5
  • 14
0
votes
1 answer

Python firefox-marionette timeout

I ran the following: C:\Program Files\Mozilla Firefox>firefox -marionette And firefox launches, and the command line is made available to me again. There is no response of: … 1491228343089 Marionette INFO Listening on port 2828 as is…
jason m
  • 6,519
  • 20
  • 69
  • 122
0
votes
0 answers

Linux machine with Firefix 52: I don't have geckoDriver.exe and Selenium tests stills runs fine

I followed the steps according to this answer https://stackoverflow.com/a/43899952/7282061 and still could not run tests in windows 7 machine with Firefox 54.0.1 installed. It opened the browser but did not run tests without the Gecko driver. But it…
0
votes
0 answers

GeckoDriver 0.15.0 for Selenium 3.3.1 does not bring Firefox 52 browser window to front

I am using selenium 3.3.1 to run some tests on Firefox 52, and recently switched from the legacy Firefox driver to Marionette (geckoDriver 0.15.0). The method used by the FirefoxDriver is supposed to be…
0
votes
1 answer

How do I bypass marionette issues in Robot?

I've been asked to evaluate Robotframework and happy with what I've seen for the most part. For it to be a viable option for me however, I need it to work in Firefox. Marionette capabilities were a problem in my Ruby/Capybara environment, and I…
TangibleDream
  • 601
  • 8
  • 29
0
votes
1 answer

Selenium 3.0 gecko driver and marionette driver

How are GeckoDriver and Marionette driver related to each other and how do they work?
Aman Khare
  • 43
  • 5
0
votes
0 answers

Invalid Argument was supplied Exception when running C# test using Selenium WebDriver with Firefox 50.0

I'm learning Selenium WebDriver and trying to run a simple test using Firefox 50 and Webdriver 3.0.1. I'm using Marionette driver 0.11.1 I have the following code: FirefoxDriverService service =…
gene
  • 2,098
  • 7
  • 40
  • 98
0
votes
2 answers

FirefoxProfile settings are being ignored

Using Selenium WebDriver 3.0.1.0 with Marionette and geckodriver 0.11.1 and Firefox 50 from C#. I have used FirefoxOptions motivated by this ObsoleteAttribute: FirefoxDriver should not be constructed with a FirefoxBinary object. Use…
Vojtěch Dohnal
  • 7,867
  • 3
  • 43
  • 105
0
votes
1 answer

Connection refused with marionette driver (python)

I'm trying to run a web scraping script from cron. Using the selenium firefox it runs 6 times then crashes. I've raised a query on this but no one has even made a comment in a day so following some reading I thought I would try marionette. I've…
HenryM
  • 5,557
  • 7
  • 49
  • 105
0
votes
1 answer

How to ByPass/Ignore Untrusted Certificate Error in firefox 48 while using Selenium Webdriver 3.0 beta4

I am trying to use Selenium stanalone 3 beta4.jar + FireFox48 + Geckodriver on a RD machined and below are problem I am observing : i) I am not able to bypass or Ignore the Certificate Security Error for my application below is the piece of code I…
0
votes
1 answer

Unable to instantiate Marionette driver with both a FirefoxProfile & FirefoxDriverService

I am currently updating my C# solution with the new Marionette driver for Firefox. I have managed to get the driver to successfully launch a url with the following code FirefoxDriverService service =…
0
votes
1 answer

Setting up simple test with FF49 and Selenium 2.53.0

I need to upgrade my application compatibility to Firefox 49 (enterprise policy), so I need to upgrade my tests so that they use FF49 (previous version was 40). NB. it's a portable version (I don't know if that changes anything) I tried setting up a…
GournaySylvain
  • 461
  • 1
  • 3
  • 16