Le 20/02/2013 14:19, Roy Collings a écrit : > Sorry Julien, I still can't figure out how to access that. > > I've tried: > > window.wrappedJSObject.UtilityTray.show() > self.marionette.window.wrappedJSObject.UtilityTray.show() > self.window.wrappedJSObject.UtilityTray.show()
I don't know much about the python API for marionette, but in the JS API you can do something like : app.device.executeAsyncScript( 'window.wrappedJSObject.UtilityTray.show();' ); or : var script = 'global.wrappedJSObject.UtilityTray.show();'; app.device.executeScript(script); Can't help much more than that, sorry.. -- Julien _______________________________________________ dev-b2g mailing list [email protected] https://lists.mozilla.org/listinfo/dev-b2g
