Module my_autopylot.citrix39
Functions
def citrix_scrape_contents_by_search_copy_paste(highlight_text='')
-
Description
Gets the focus on the Citrix screen/window by searching desired text using crtl+f and performs copy/paste of all data. Useful in Citrix applications This is useful in Citrix systems
Args
highlight_text
- text to be searched and highlighted
Returns
[status, data] status (bool) - True if successful, False if not data (str) - Scraped data
def citrix_window_clear_search()
-
Description
Clears previously found text (crtl+f highlight)
Args
None
Returns
[status] status (bool) - True if successful, False if not
def clipboard_get_data(format_id=13)
-
Description
Get data from clipboard
Args
format_id
- format of data
Returns
[status, data] status (bool) - True if successful, False if not data (str) - data from clipboard
def clipboard_set_data(data, format_id=13)
-
Description
Set data to clipboard
Args
data
- data to be set to clipboard
format_id
- format of data
Returns
[status] status (bool) - True if successful, False if not