Part of kiwi.ui.test.recorder View In Hierarchy
Known subclasses: kiwi.ui.test.recorder.SignalEvent, kiwi.ui.test.recorder.WindowDeleteEvent
Class Variables | object_type | subclass for type, Recorder uses
this to automatically attach events to objects when they appear
|
Method | __init__ | Create a new Event object. |
Method | get_toplevel | This fetches the toplevel widget for a specific object, |
Method | serialize | Serialize the widget, write the code here which is |
Parameters | object | a gobject subclass |
name | name of the object, if None, the method get_name() will be called |
Override this in a subclass.
Serialize the widget, write the code here which is used to reproduce the event, for a button which is clicked the implementation looks like this:
>>> def serialize(self): >>> ... return '%s.clicked' % self.name
Returns | string to reproduce event Override this in a subclass. |