WebDriver/Marionette/Marionette Client API: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
No edit summary
m (Whimboo moved page Auto-tools/Projects/Marionette/Marionette Client API to WebDriver/Marionette/Marionette Client API: Reorganization of Marionette project documenation)
 
(18 intermediate revisions by 2 users not shown)
Line 1: Line 1:
When writing Marionette tests in Python, the following API's are available. These are all available in the self.marionette object which is available to all Marionette tests.  Most of these API's are analogs to Selenium methods documented here: 
This page has been moved to [https://developer.mozilla.org/en/Marionette/Marionette mdn]
 
=== Configuration ===
 
* {{done|'''set_script_timeout(ms)'''}}: sets the timeout for asynchronous scripts
* {{done|'''set_search_timeout(ms)'''}}: sets the maximum time Marionette will wait while searching for a DOM element using any of the find_ methods
 
=== Context Management ===
 
* {{done|'''set_context(context)'''}}: sets the context in which future commands will be executed; 'context' is either "chrome" or "content"
* {{ok|'''get_window()'''}}: returns an id representing the current window
* {{ok|'''get_windows()'''}}: returns a list of all available windows
* {{ok|'''switch_to_window(window)'''}}: sets the active window; all future commands will be targeted here. 'window' is one of the id's returned by get_windows().
* {{ok|'''switch_to_frame(id)'''}}: sets the active frame; all future commands will be targeted here.  'id' is either the id of an iframe, an HTMLElement (see below) representing an iframe, or None to target the default top-level frame.

Latest revision as of 19:40, 26 February 2021

This page has been moved to mdn