LDTP  3.5.0
 All Pages
remap

Syntax

remap('<window name>')

Description

We can handle dynamically created widgets(meaning widgets created at run time) using this remap function. Calling remap will generate appmap for the given dialog at run time and update the hash table. Then we can access the new widgets. But please make sure to call undoremap() once the required functions are performed so that the hash table will be reverted back to its original state. The reason for having undoremap() is that subsequent calls to remap() might corrupt the hash table containg the appmap entries.

Please not that the <application-name> should be same as the one given as the commmand-line argument for appmap generation.

ImplementationDetails

It uses the same logic that appmap module uses to generate appmap. Please refer to the following link for the source code of the remap functionality

Refer: Linux: http://cgit.freedesktop.org/ldtp/ldtp2/tree/ldtpd/core.py

Mac: https://github.com/ldtp/pyatom/blob/master/atomac/ldtpd/core.py

Windows: https://github.com/ldtp/cobra/blob/master/Ldtpd/Core.cs

Example

remap('dlggeditPreferences') # Remaps the complete gedit preferences dialog

Author
Premkumar J prem..nosp@m.joth.nosp@m.imani.nosp@m.@gma.nosp@m.il.co.nosp@m.m


Linux Desktop Testing Project