Aids in executing AT-SPI actions, refocusing the widget if
necessary.
|
|
__init__(self,
action)
action is a string with the same name as the AT-SPI action you wish
to execute using this class. |
source code
|
|
|
|
__call__(self,
name='',
roleName='',
description='',
delay=1.0)
If name, roleName or description are specified, first search for a
widget that matches and refocus on it. |
source code
|
|
|
|
|
|
|
|
|
|
button(self,
name)
A shortcut to self(name, roleName = 'push button') |
source code
|
|
|
|
menu(self,
name)
A shortcut to self(name, roleName = 'menu') |
source code
|
|
|
|
menuItem(self,
name)
A shortcut to self(name, roleName = 'menu item') |
source code
|
|
|
|
table(self,
name='')
A shortcut to self(name, roleName 'table') |
source code
|
|
|
|
tableCell(self,
name='')
A shortcut to self(name, roleName 'table cell') |
source code
|
|
|
|
text(self,
name='')
A shortcut to self(name, roleName = 'text') |
source code
|
|
|
Inherited from FocusWidget:
findByPredicate
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__sizeof__,
__str__,
__subclasshook__
|