Questions tagged [mozmill]

MozMill is a project of the Mozilla Development Network. It is a test tool and framework for writing automated tests for Gecko based applications (Firefox, Thunderbird, Songbird, etc). It is built as a FireFox extension which includes an IDE or as a command line client to help you write, run, and debug tests.

Mozmill is a project of the Mozilla Development Network.

MozMill is a test tool and framework for writing automated tests for Gecko based applications (Firefox, Thunderbird, Songbird, etc). It is built as a FireFox extension which includes an IDE or as a command line client to help you write, run, and debug tests.

Source: https://developer.mozilla.org/en/Mozmill

7 questions
14
votes
5 answers

Unit Testing a Firefox Addon

In working on a firefox addon, i've found the task of unit testing to be kinda janky and difficult to setup. Anyone have recommendations on how to setup unit tests for an addon? Any tools or additional addons found to be helpful? I've found Mozmill…
jpcamara
  • 672
  • 6
  • 18
3
votes
1 answer

Using Mozmill for testing Firefox addon

I have a Mozilla Firefox addon and wanna test it. I've found Mozmill and wrote the small Python script, which is just taking each Firefox version and run the command like this: mozmill --binary=C:\browsers\firefox\38.0.1\firefox.exe…
stolho
  • 950
  • 1
  • 7
  • 15
0
votes
1 answer

Mozmill : list of keywords --> first result URLs in Google

I have a list of keywords. With Mozmill, I'd like to get the first result URL for each of those keyword when doing a search on Google
Matthieu
  • 361
  • 2
  • 6
  • 16
0
votes
1 answer

Crawler with MozMill

I have a beginner question : I'd like to write a crawler (~1000 webpages) with MozMill but too often, websites have problems loading some elements so there is no page load. --> The waitForPageLoad() method stops my crawler How could I proceed?
Matthieu
  • 361
  • 2
  • 6
  • 16
0
votes
1 answer

Using MozMill for testing standalone XUL applications

As a follow-up of this question, I am trying MozMill for testing standalone XUL applications (not a firefox extension). However, I did not "get it" yet - more specifically, how to test a XULRunner-based application. Consider this app, for example.…
brandizzi
  • 26,083
  • 8
  • 103
  • 158
0
votes
1 answer

Mozmill UI automation and cookies

I recently used the Mozmill addon/tool do some UI automation. This has worked really well so far, except when I'm trying to set and then read some cookies. When I use Mozmill to set cookies, I don't seem to get the traditional javascript cookie…
John Tabs
  • 363
  • 1
  • 3
  • 10
0
votes
1 answer

mozIJSSubScriptLoader::loadSubScript: How to prevent leaking of symbols without imposing security constraints?

In Mozilla's JavaScript environment, it is possible to load other script from a URL using the loadSubScript() method of the mozIJSSubScriptLoader interface. It is possible to specify an object used as the scope object for the script being executed.…
Jens Müller
  • 302
  • 4
  • 13