kiwi.ui.test.recorder.EntrySetTextEvent(SignalEvent)
class documentationkiwi.ui.test.recorder
(View In Hierarchy)
This event represents a content modification of a GtkEntry. When the user deletes, clears, adds, modifies the text this event will be created.
Method | __init__ | No summary |
Method | serialize | 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: |
Inherited from Event (via SignalEvent):
Method | get_toplevel | This fetches the toplevel widget for a specific object, by default it assumes it's a wiget subclass and calls get_toplevel() for the widget |
Inherited from Event (via SignalEvent):
Method | get_toplevel | This fetches the toplevel widget for a specific object, by default it assumes it's a wiget subclass and calls get_toplevel() for the widget |
Create a new SignalEvent object. @param object: @param name: @param args:
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.