1 Star 2 Fork 5

冠王团队/TagUI-Python

forked from jackalex/TagUI-Python 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tagui.py 55.04 KB
一键复制 编辑 原始数据 按行查看 历史
Ken Soh 提交于 2019-09-06 01:29 . #50 - follow-up to frame()
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447
"""INTEGRATION ENGINE FOR TAGUI FOR PYTHON PACKAGE ~ TEBEL.ORG"""
# Apache License 2.0, Copyright 2019 Tebel.Automation Private Limited
# https://github.com/tebelorg/TagUI-Python/blob/master/LICENSE.txt
__author__ = 'Ken Soh <opensource@tebel.org>'
__version__ = '1.11.3'
import subprocess
import os
import sys
import time
import platform
# required for python 2 usage of io.open
if sys.version_info[0] < 3: import io
# default timeout in seconds for UI element
_tagui_timeout = 10.0
# default delay in seconds in while loops
_tagui_delay = 0.1
# default debug flag to print debug output
_tagui_debug = False
# flag to track if tagui session is started
_tagui_started = False
# flag to track visual automation connected
_tagui_visual = False
# flag to track chrome browser connected
_tagui_chrome = False
# id to track instruction count from tagui python to tagui
_tagui_id = 0
# delete tagui temp output text file to avoid reading old data
if os.path.isfile('tagui_python.txt'): os.remove('tagui_python.txt')
# define local custom javascript functions for use in tagui
_tagui_local_js = \
"""// local custom helper function to check if UI element exists
// keep checking until timeout is reached before return result
// effect is interacting with element as soon as it appears
function exist(element_identifier) {
var exist_timeout = Date.now() + casper.options.waitTimeout;
while (Date.now() < exist_timeout) {
if (present(element_identifier))
return true;
else
sleep(100);
}
return false;
}
// function to replace add_concat() in tagui_header.js
// gain - echoing string with single and double quotes
// loss - no text-like variables usage since Python env
function add_concat(source_string) {
return source_string;
}
"""
def _python2_env():
"""function to check python version for compatibility handling"""
if sys.version_info[0] < 3: return True
else: return False
def _python3_env():
"""function to check python version for compatibility handling"""
return not _python2_env()
def _py23_decode(input_variable = None):
"""function for python 2 and 3 str-byte compatibility handling"""
if input_variable is None: return None
elif _python2_env(): return input_variable
else: return input_variable.decode('utf-8')
def _py23_encode(input_variable = None):
"""function for python 2 and 3 str-byte compatibility handling"""
if input_variable is None: return None
elif _python2_env(): return input_variable
else: return input_variable.encode('utf-8')
def _py23_open(target_filename, target_mode = 'r'):
"""function for python 2 and 3 open utf-8 compatibility handling"""
if _python2_env():
return io.open(target_filename, target_mode, encoding = 'utf-8')
else:
return open(target_filename, target_mode, encoding = 'utf-8')
def _py23_read(input_text = None):
"""function for python 2 and 3 read utf-8 compatibility handling"""
if input_text is None: return None
if _python2_env(): return input_text.encode('utf-8')
else: return input_text
def _py23_write(input_text = None):
"""function for python 2 and 3 write utf-8 compatibility handling"""
if input_text is None: return None
if _python2_env(): return input_text.decode('utf-8')
else: return input_text
def _tagui_read():
"""function to read from tagui process live mode interface"""
# readline instead of read, not expecting user input to tagui
global _process; return _py23_decode(_process.stdout.readline())
def _tagui_write(input_text = ''):
"""function to write to tagui process live mode interface"""
global _process; _process.stdin.write(_py23_encode(input_text))
_process.stdin.flush(); # flush to ensure immediate delivery
def _tagui_output():
"""function to wait for tagui output file to read and delete it"""
global _tagui_delay
# sleep to not splurge cpu cycles in while loop
while not os.path.isfile('tagui_python.txt'):
time.sleep(_tagui_delay)
tagui_output_file = _py23_open('tagui_python.txt', 'r')
tagui_output_text = _py23_read(tagui_output_file.read())
tagui_output_file.close()
os.remove('tagui_python.txt')
return tagui_output_text
def _esq(input_text = ''):
"""function for selective escape of single quote ' for tagui"""
# [BACKSLASH_QUOTE] marker to work together with send()
return input_text.replace("'",'[BACKSLASH_QUOTE]')
def _sdq(input_text = ''):
"""function to escape ' in xpath for tagui live mode"""
# change identifier single quote ' to double quote "
return input_text.replace("'",'"')
def _started():
global _tagui_started; return _tagui_started
def _visual():
global _tagui_visual; return _tagui_visual
def _chrome():
global _tagui_chrome; return _tagui_chrome
def _python_flow():
"""function to create entry tagui flow without visual automation"""
flow_text = '// NORMAL ENTRY FLOW FOR TAGUI PYTHON PACKAGE ~ TEBEL.ORG\r\n\r\nlive'
flow_file = _py23_open('tagui_python', 'w')
flow_file.write(_py23_write(flow_text))
flow_file.close()
def _visual_flow():
"""function to create entry tagui flow with visual automation"""
flow_text = '// VISUAL ENTRY FLOW FOR TAGUI PYTHON PACKAGE ~ TEBEL.ORG\r\n' + \
'// mouse_xy() - dummy trigger for SikuliX integration\r\n\r\nlive'
flow_file = _py23_open('tagui_python', 'w')
flow_file.write(_py23_write(flow_text))
flow_file.close()
def _tagui_local():
"""function to create tagui_local.js for custom local functions"""
global _tagui_local_js
javascript_file = _py23_open('tagui_local.js', 'w')
javascript_file.write(_py23_write(_tagui_local_js))
javascript_file.close()
def _tagui_delta(base_directory = None):
"""function to download stable delta files from tagui cutting edge version"""
global __version__
if base_directory is None or base_directory == '': return False
# skip downloading if it is already done before for current release
if os.path.isfile(base_directory + '/' + 'tagui_python_' + __version__): return True
# define list of key tagui files to be downloaded and synced locally
delta_list = ['tagui', 'tagui.cmd', 'end_processes', 'end_processes.cmd',
'tagui_header.js', 'tagui_parse.php', 'tagui.sikuli/tagui.py']
for delta_file in delta_list:
tagui_delta_url = 'https://raw.githubusercontent.com/tebelorg/Tump/master/TagUI-Python/' + delta_file
tagui_delta_file = base_directory + '/' + 'src' + '/' + delta_file
if not download(tagui_delta_url, tagui_delta_file): return False
# make sure execute permission is there for .tagui/src/tagui and end_processes
if platform.system() in ['Linux', 'Darwin']:
os.system('chmod -R 755 ' + base_directory + '/' + 'src' + '/' + 'tagui > /dev/null 2>&1')
os.system('chmod -R 755 ' + base_directory + '/' + 'src' + '/' + 'end_processes > /dev/null 2>&1')
# create marker file to skip syncing delta files next time for current release
delta_done_file = _py23_open(base_directory + '/' + 'tagui_python_' + __version__, 'w')
delta_done_file.write(_py23_write('TagUI installation files used by TagUI for Python'))
delta_done_file.close()
return True
def coord(x_coordinate = 0, y_coordinate = 0):
"""function to form a coordinate string from x and y integers"""
return '(' + str(x_coordinate) + ',' + str(y_coordinate) + ')'
def debug(on_off = None):
"""function to set debug mode, eg print debug info"""
global _tagui_debug
if on_off is not None: _tagui_debug = on_off
return _tagui_debug
def unzip(file_to_unzip = None, unzip_location = None):
"""function to unzip zip file to specified location"""
import zipfile
if file_to_unzip is None or file_to_unzip == '':
print('[TAGUI][ERROR] - filename missing for unzip()')
return False
elif not os.path.isfile(file_to_unzip):
print('[TAGUI][ERROR] - file specified missing for unzip()')
return False
zip_file = zipfile.ZipFile(file_to_unzip, 'r')
if unzip_location is None or unzip_location == '':
zip_file.extractall()
else:
zip_file.extractall(unzip_location)
zip_file.close()
return True
def setup():
"""function to setup TagUI to user home folder on Linux / macOS / Windows"""
# get user home folder location to setup tagui
if platform.system() == 'Windows':
home_directory = os.environ['APPDATA']
else:
home_directory = os.path.expanduser('~')
print('[TAGUI][INFO] - setting up TagUI for use in your Python environment')
# special check for macOS - download() will fail due to no SSL certs for Python 3
if platform.system() == 'Darwin' and _python3_env():
if os.system('/Applications/Python\ 3.7/Install\ Certificates.command > /dev/null 2>&1') != 0:
os.system('/Applications/Python\ 3.6/Install\ Certificates.command > /dev/null 2>&1')
# set tagui zip filename for respective operating systems
if platform.system() == 'Linux': tagui_zip_file = 'TagUI_Linux.zip'
elif platform.system() == 'Darwin': tagui_zip_file = 'TagUI_macOS.zip'
elif platform.system() == 'Windows': tagui_zip_file = 'TagUI_Windows.zip'
else:
print('[TAGUI][ERROR] - unknown ' + platform.system() + ' operating system to setup TagUI')
return False
print('[TAGUI][INFO] - downloading TagUI (~200MB) and unzipping to below folder...')
print('[TAGUI][INFO] - ' + home_directory)
# set tagui zip download url and download zip for respective operating systems
tagui_zip_url = 'https://github.com/tebelorg/Tump/releases/download/v1.0.0/' + tagui_zip_file
if not download(tagui_zip_url, home_directory + '/' + tagui_zip_file):
# error message is shown by download(), no need for message here
return False
# unzip downloaded zip file to user home folder
unzip(home_directory + '/' + tagui_zip_file, home_directory)
if not os.path.isfile(home_directory + '/' + 'tagui' + '/' + 'src' + '/' + 'tagui'):
print('[TAGUI][ERROR] - unable to unzip TagUI to ' + home_directory)
return False
# set correct tagui folder for different operating systems
if platform.system() == 'Windows':
tagui_directory = home_directory + '/' + 'tagui'
else:
tagui_directory = home_directory + '/' + '.tagui'
# overwrite tagui to .tagui folder for Linux / macOS
# first rename existing .tagui folder to .tagui_previous
if os.path.isdir(tagui_directory):
os.rename(tagui_directory, tagui_directory + '_previous')
# next rename extracted tagui folder (verified earlier) to .tagui
os.rename(home_directory + '/' + 'tagui', tagui_directory)
# finally remove .tagui_previous folder if it exists
if os.path.isdir(tagui_directory + '_previous'):
import shutil
shutil.rmtree(tagui_directory + '_previous')
# after unzip, remove downloaded zip file to save disk space
if os.path.isfile(home_directory + '/' + tagui_zip_file):
os.remove(home_directory + '/' + tagui_zip_file)
# download stable delta files from tagui cutting edge version
print('[TAGUI][INFO] - done. syncing TagUI with stable cutting edge version')
if not _tagui_delta(tagui_directory): return False
# perform Linux specific setup actions
if platform.system() == 'Linux':
# zipfile extractall does not preserve execute permissions
# invoking chmod to set all files with execute permissions
# and update delta tagui/src/tagui with execute permission
if os.system('chmod -R 755 ' + tagui_directory + ' > /dev/null 2>&1') != 0:
print('[TAGUI][ERROR] - unable to set permissions for .tagui folder')
return False
# check that php, a dependency for tagui, is installed and working
if os.system('php --version > /dev/null 2>&1') != 0:
print('[TAGUI][INFO] - PHP is not installed by default on your Linux distribution')
print('[TAGUI][INFO] - google how to install PHP (eg for Ubuntu, apt-get install php)')
print('[TAGUI][INFO] - after that, TagUI ready for use in your Python environment')
return False
else:
print('[TAGUI][INFO] - TagUI now ready for use in your Python environment')
# perform macOS specific setup actions
if platform.system() == 'Darwin':
# zipfile extractall does not preserve execute permissions
# invoking chmod to set all files with execute permissions
# and update delta tagui/src/tagui with execute permission
if os.system('chmod -R 755 ' + tagui_directory + ' > /dev/null 2>&1') != 0:
print('[TAGUI][ERROR] - unable to set permissions for .tagui folder')
return False
# check for openssl, a dependency of phantomjs removed in newer macOS
if not os.path.isfile('/usr/local/opt/openssl/lib/libssl.1.0.0.dylib'):
# if openssl is missing, first attempt to install using homebrew
os.system('brew install openssl > /dev/null 2>&1')
# if it is still missing, attempt again by first installing homebrew
if not os.path.isfile('/usr/local/opt/openssl/lib/libssl.1.0.0.dylib'):
print('')
print('[TAGUI][INFO] - now installing OpenSSL dependency using Homebrew')
print('[TAGUI][INFO] - you may be prompted for login password to continue')
print('')
os.system('echo | /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"')
os.system('brew install openssl')
# if it is still missing, prompt user to install homebrew and openssl
if not os.path.isfile('/usr/local/opt/openssl/lib/libssl.1.0.0.dylib'):
print('[TAGUI][INFO] - OpenSSL was not able to be installed automatically')
print('[TAGUI][INFO] - run below 2 commands in your terminal to install manually')
print('[TAGUI][INFO] - after that, TagUI ready for use in your Python environment')
print('')
print('/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"')
print('brew install openssl')
print('')
return False
else:
print('[TAGUI][INFO] - TagUI now ready for use in your Python environment')
else:
print('[TAGUI][INFO] - TagUI now ready for use in your Python environment')
else:
print('[TAGUI][INFO] - TagUI now ready for use in your Python environment')
# perform Windows specific setup actions
if platform.system() == 'Windows':
# check that tagui packaged php is working, it has dependency on MSVCR110.dll
if os.system(tagui_directory + '/' + 'src' + '/' + 'php/php.exe -v > nul 2>&1') != 0:
print('[TAGUI][INFO] - now installing missing Visual C++ Redistributable dependency')
vcredist_x86_url = 'https://raw.githubusercontent.com/tebelorg/Tump/master/vcredist_x86.exe'
if download(vcredist_x86_url, tagui_directory + '/vcredist_x86.exe'):
os.system(tagui_directory + '/vcredist_x86.exe')
# check again if tagui packaged php is working, after installing vcredist_x86.exe
if os.system(tagui_directory + '/' + 'src' + '/' + 'php/php.exe -v > nul 2>&1') != 0:
print('[TAGUI][INFO] - MSVCR110.dll is still missing, install vcredist_x86.exe from')
print('[TAGUI][INFO] - https://www.microsoft.com/en-us/download/details.aspx?id=30679')
print('[TAGUI][INFO] - after that, TagUI ready for use in your Python environment')
return False
else:
print('[TAGUI][INFO] - TagUI now ready for use in your Python environment')
else:
print('[TAGUI][INFO] - TagUI now ready for use in your Python environment')
return True
def init(visual_automation = False, chrome_browser = True):
"""start and connect to tagui process by checking tagui live mode readiness"""
global _process, _tagui_started, _tagui_id, _tagui_visual, _tagui_chrome
if _tagui_started:
print('[TAGUI][ERROR] - use close() before using init() again')
return False
# reset id to track instruction count from tagui python to tagui
_tagui_id = 0
# get user home folder location to locate tagui executable
if platform.system() == 'Windows':
tagui_directory = os.environ['APPDATA'] + '/' + 'tagui'
else:
tagui_directory = os.path.expanduser('~') + '/' + '.tagui'
tagui_executable = tagui_directory + '/' + 'src' + '/' + 'tagui'
end_processes_executable = tagui_directory + '/' + 'src' + '/' + 'end_processes'
# if tagui executable is not found, initiate setup() to install tagui
if not os.path.isfile(tagui_executable):
if not setup():
# error message is shown by setup(), no need for message here
return False
# sync tagui delta files for current release if needed
if not _tagui_delta(tagui_directory): return False
# on Windows, check if there is space in folder path name
if platform.system() == 'Windows' and ' ' in os.getcwd():
print('[TAGUI][INFO] - to use TagUI for Python on Windows, avoid space in folder path name')
return False
# create entry flow to launch SikuliX accordingly
if visual_automation:
# check for working java jdk for visual automation mode
if platform.system() == 'Windows':
shell_silencer = '> nul 2>&1'
else:
shell_silencer = '> /dev/null 2>&1'
if os.system('java -version ' + shell_silencer) != 0:
print('[TAGUI][INFO] - for visual automation mode, Java JDK v8 (64-bit) or later is required')
print('[TAGUI][INFO] - to use visual automation feature, download Java JDK v8 (64-bit) from below')
print('[TAGUI][INFO] - https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html')
return False
else:
# start a dummy first run if never run before, to let sikulix integrate jython
sikulix_folder = tagui_directory + '/' + 'src' + '/' + 'sikulix'
if os.path.isfile(sikulix_folder + '/' + 'jython-standalone-2.7.1.jar'):
os.system('java -jar ' + sikulix_folder + '/' + 'sikulix.jar -h ' + shell_silencer)
_visual_flow()
else:
_python_flow()
# create tagui_local.js for custom functions
_tagui_local()
# invoke web browser accordingly with tagui option
browser_option = ''
if chrome_browser:
browser_option = 'chrome'
# entry shell command to invoke tagui process
tagui_cmd = tagui_executable + ' tagui_python ' + browser_option
# run tagui end processes script to flush dead processes
# for eg execution ended with ctrl+c or forget to close()
os.system(end_processes_executable)
try:
# launch tagui using subprocess
_process = subprocess.Popen(
tagui_cmd, shell=True,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE
)
# loop until tagui live mode is ready or tagui process has ended
while True:
# failsafe exit if tagui process gets killed for whatever reason
if _process.poll() is not None:
print('[TAGUI][ERROR] - following happens when starting TagUI...')
print('')
os.system(tagui_cmd)
print('')
_tagui_visual = False
_tagui_chrome = False
_tagui_started = False
return False
# read next line of output from tagui process live mode interface
tagui_out = _tagui_read()
# check that tagui live mode is ready then start listening for inputs
if 'LIVE MODE - type done to quit' in tagui_out:
# dummy + start line to clear live mode backspace char before listening
_tagui_write('echo "[TAGUI][STARTED]"\n')
_tagui_write('echo "[TAGUI][' + str(_tagui_id) + '] - listening for inputs"\n')
_tagui_visual = visual_automation
_tagui_chrome = chrome_browser
_tagui_started = True
# loop until tagui live mode is ready and listening for inputs
# also check _tagui_started to handle unexpected termination
while _tagui_started and not _ready(): pass
if not _tagui_started:
print('[TAGUI][ERROR] - TagUI process ended unexpectedly')
return False
# remove generated tagui flow, js code and custom functions files
if os.path.isfile('tagui_python'): os.remove('tagui_python')
if os.path.isfile('tagui_python.js'): os.remove('tagui_python.js')
if os.path.isfile('tagui_python.raw'): os.remove('tagui_python.raw')
if os.path.isfile('tagui_local.js'): os.remove('tagui_local.js')
# increment id and prepare for next instruction
_tagui_id = _tagui_id + 1
return True
except Exception as e:
print('[TAGUI][ERROR] - ' + str(e))
_tagui_visual = False
_tagui_chrome = False
_tagui_started = False
return False
def _ready():
"""internal function to check if tagui is ready to receive instructions after init() is called"""
global _process, _tagui_started, _tagui_id, _tagui_visual, _tagui_chrome
if not _tagui_started:
# print output error in calling parent function instead
return False
try:
# failsafe exit if tagui process gets killed for whatever reason
if _process.poll() is not None:
# print output error in calling parent function instead
_tagui_visual = False
_tagui_chrome = False
_tagui_started = False
return False
# read next line of output from tagui process live mode interface
tagui_out = _tagui_read()
# print to screen debug output that is saved to tagui_python.log
if debug():
sys.stdout.write(tagui_out); sys.stdout.flush()
# check if tagui live mode is listening for inputs and return result
if tagui_out.strip().startswith('[TAGUI][') and tagui_out.strip().endswith('] - listening for inputs'):
return True
else:
return False
except Exception as e:
print('[TAGUI][ERROR] - ' + str(e))
return False
def send(tagui_instruction = None):
"""send next live mode instruction to tagui for processing if tagui is ready"""
global _process, _tagui_started, _tagui_id, _tagui_visual, _tagui_chrome
if not _tagui_started:
print('[TAGUI][ERROR] - use init() before using send()')
return False
if tagui_instruction is None or tagui_instruction == '': return True
try:
# failsafe exit if tagui process gets killed for whatever reason
if _process.poll() is not None:
print('[TAGUI][ERROR] - no active TagUI process to send()')
_tagui_visual = False
_tagui_chrome = False
_tagui_started = False
return False
# escape special characters for them to reach tagui correctly
tagui_instruction = tagui_instruction.replace('\\','\\\\')
tagui_instruction = tagui_instruction.replace('\n','\\n')
tagui_instruction = tagui_instruction.replace('\r','\\r')
tagui_instruction = tagui_instruction.replace('\t','\\t')
tagui_instruction = tagui_instruction.replace('\a','\\a')
tagui_instruction = tagui_instruction.replace('\b','\\b')
tagui_instruction = tagui_instruction.replace('\f','\\f')
# special handling for single quote to work with _esq() for tagui
tagui_instruction = tagui_instruction.replace('[BACKSLASH_QUOTE]','\\\'')
# escape backslash to display source string correctly after echoing
echo_safe_instruction = tagui_instruction.replace('\\','\\\\')
# escape double quote because echo step below uses double quotes
echo_safe_instruction = echo_safe_instruction.replace('"','\\"')
# echo live mode instruction, after preparing string to be echo-safe
_tagui_write('echo "[TAGUI][' + str(_tagui_id) + '] - ' + echo_safe_instruction + '"\n')
# send live mode instruction to be executed
_tagui_write(tagui_instruction + '\n')
# echo marker text to prepare for next instruction
_tagui_write('echo "[TAGUI][' + str(_tagui_id) + '] - listening for inputs"\n')
# loop until tagui live mode is ready and listening for inputs
# also check _tagui_started to handle unexpected termination
while _tagui_started and not _ready(): pass
if not _tagui_started:
print('[TAGUI][ERROR] - TagUI process ended unexpectedly')
return False
# increment id and prepare for next instruction
_tagui_id = _tagui_id + 1
return True
except Exception as e:
print('[TAGUI][ERROR] - ' + str(e))
return False
def close():
"""disconnect from tagui process by sending 'done' trigger instruction"""
global _process, _tagui_started, _tagui_id, _tagui_visual, _tagui_chrome
if not _tagui_started:
print('[TAGUI][ERROR] - use init() before using close()')
return False
try:
# failsafe exit if tagui process gets killed for whatever reason
if _process.poll() is not None:
print('[TAGUI][ERROR] - no active TagUI process to close()')
_tagui_visual = False
_tagui_chrome = False
_tagui_started = False
return False
# send 'done' instruction to terminate live mode and exit tagui
_tagui_write('echo "[TAGUI][FINISHED]"\n')
_tagui_write('done\n')
# loop until tagui process has closed before returning control
while _process.poll() is None: pass
# remove again generated tagui flow, js code and custom functions files
if os.path.isfile('tagui_python'): os.remove('tagui_python')
if os.path.isfile('tagui_python.js'): os.remove('tagui_python.js')
if os.path.isfile('tagui_python.raw'): os.remove('tagui_python.raw')
if os.path.isfile('tagui_local.js'): os.remove('tagui_local.js')
# remove generated tagui log and data files if not in debug mode
if not debug():
if os.path.isfile('tagui_python.log'): os.remove('tagui_python.log')
if os.path.isfile('tagui_python.txt'): os.remove('tagui_python.txt')
_tagui_visual = False
_tagui_chrome = False
_tagui_started = False
return True
except Exception as e:
print('[TAGUI][ERROR] - ' + str(e))
_tagui_visual = False
_tagui_chrome = False
_tagui_started = False
return False
def exist(element_identifier = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using exist()')
return False
if element_identifier is None or element_identifier == '':
return False
# return True for keywords as the computer screen always exists
if element_identifier.lower() in ['page.png', 'page.bmp']:
if _visual():
return True
else:
print('[TAGUI][ERROR] - page.png / page.bmp requires init(visual_automation = True)')
return False
# pre-emptive check for existence of specified image file for visual automation
if element_identifier.lower().endswith('.png') or element_identifier.lower().endswith('.bmp'):
if not os.path.isfile(element_identifier):
print('[TAGUI][ERROR] - missing image file ' + element_identifier)
return False
elif not _visual():
print('[TAGUI][ERROR] - ' + element_identifier + ' identifier requires init(visual_automation = True)')
return False
# assume that (x,y) coordinates for visual automation always exist
if element_identifier.startswith('(') and element_identifier.endswith(')'):
if len(element_identifier.split(',')) in [2, 3]:
if not any(c.isalpha() for c in element_identifier):
if _visual():
return True
else:
print('[TAGUI][ERROR] - x, y coordinates require init(visual_automation = True)')
return False
send('exist_result = exist(\'' + _sdq(element_identifier) + '\').toString()')
send('dump exist_result to tagui_python.txt')
if _tagui_output() == 'true':
return True
else:
return False
def url(webpage_url = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using url()')
return False
if not _chrome():
print('[TAGUI][ERROR] - url() requires init(chrome_browser = True)')
return False
if webpage_url is not None and webpage_url != '':
if webpage_url.startswith('http://') or webpage_url.startswith('https://'):
if not send(_esq(webpage_url)):
return False
else:
return True
else:
print('[TAGUI][ERROR] - URL does not begin with http:// or https:// ')
return False
else:
send('dump url() to tagui_python.txt')
url_result = _tagui_output()
return url_result
def click(element_identifier = None, test_coordinate = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using click()')
return False
if element_identifier is None or element_identifier == '':
print('[TAGUI][ERROR] - target missing for click()')
return False
if test_coordinate is not None and isinstance(test_coordinate, int):
element_identifier = coord(element_identifier, test_coordinate)
if not exist(element_identifier):
print('[TAGUI][ERROR] - cannot find ' + element_identifier)
return False
elif not send('click ' + _sdq(element_identifier)):
return False
else:
return True
def rclick(element_identifier = None, test_coordinate = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using rclick()')
return False
if element_identifier is None or element_identifier == '':
print('[TAGUI][ERROR] - target missing for rclick()')
return False
if test_coordinate is not None and isinstance(test_coordinate, int):
element_identifier = coord(element_identifier, test_coordinate)
if not exist(element_identifier):
print('[TAGUI][ERROR] - cannot find ' + element_identifier)
return False
elif not send('rclick ' + _sdq(element_identifier)):
return False
else:
return True
def dclick(element_identifier = None, test_coordinate = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using dclick()')
return False
if element_identifier is None or element_identifier == '':
print('[TAGUI][ERROR] - target missing for dclick()')
return False
if test_coordinate is not None and isinstance(test_coordinate, int):
element_identifier = coord(element_identifier, test_coordinate)
if not exist(element_identifier):
print('[TAGUI][ERROR] - cannot find ' + element_identifier)
return False
elif not send('dclick ' + _sdq(element_identifier)):
return False
else:
return True
def hover(element_identifier = None, test_coordinate = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using hover()')
return False
if element_identifier is None or element_identifier == '':
print('[TAGUI][ERROR] - target missing for hover()')
return False
if test_coordinate is not None and isinstance(test_coordinate, int):
element_identifier = coord(element_identifier, test_coordinate)
if not exist(element_identifier):
print('[TAGUI][ERROR] - cannot find ' + element_identifier)
return False
elif not send('hover ' + _sdq(element_identifier)):
return False
else:
return True
def type(element_identifier = None, text_to_type = None, test_coordinate = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using type()')
return False
if element_identifier is None or element_identifier == '':
print('[TAGUI][ERROR] - target missing for type()')
return False
if text_to_type is None or text_to_type == '':
print('[TAGUI][ERROR] - text missing for type()')
return False
if test_coordinate is not None and isinstance(text_to_type, int):
element_identifier = coord(element_identifier, text_to_type)
text_to_type = test_coordinate
if not exist(element_identifier):
print('[TAGUI][ERROR] - cannot find ' + element_identifier)
return False
elif not send('type ' + _sdq(element_identifier) + ' as ' + _esq(text_to_type)):
return False
else:
return True
def select(element_identifier = None, option_value = None, test_coordinate1 = None, test_coordinate2 = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using select()')
return False
if element_identifier is None or element_identifier == '':
print('[TAGUI][ERROR] - target missing for select()')
return False
if option_value is None or option_value == '':
print('[TAGUI][ERROR] - option value missing for select()')
return False
if element_identifier.lower() in ['page.png', 'page.bmp'] or option_value.lower() in ['page.png', 'page.bmp']:
print('[TAGUI][ERROR] - page.png / page.bmp identifiers invalid for select()')
return False
if test_coordinate1 is not None and test_coordinate2 is not None and \
isinstance(option_value, int) and isinstance(test_coordinate2, int):
element_identifier = coord(element_identifier, option_value)
option_value = coord(test_coordinate1, test_coordinate2)
# pre-emptive checks if image files are specified for visual automation
# eg without below checks, a missing image file for option will crash
if element_identifier.lower().endswith('.png') or element_identifier.lower().endswith('.bmp'):
if not os.path.isfile(element_identifier):
print('[TAGUI][ERROR] - missing image file ' + element_identifier)
return False
elif not _visual():
print('[TAGUI][ERROR] - ' + element_identifier + ' identifier requires init(visual_automation = True)')
return False
if option_value.lower().endswith('.png') or option_value.lower().endswith('.bmp'):
if not os.path.isfile(option_value):
print('[TAGUI][ERROR] - missing image file ' + option_value)
return False
elif not _visual():
print('[TAGUI][ERROR] - ' + option_value + ' identifier requires init(visual_automation = True)')
return False
if not exist(element_identifier):
print('[TAGUI][ERROR] - cannot find ' + element_identifier)
return False
elif not send('select ' + _sdq(element_identifier) + ' as ' + _esq(option_value)):
return False
else:
return True
def read(element_identifier = None, test_coordinate1 = None, test_coordinate2 = None, test_coordinate3 = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using read()')
return ''
if element_identifier is None or element_identifier == '':
print('[TAGUI][ERROR] - target missing for read()')
return ''
if test_coordinate1 is not None and isinstance(test_coordinate1, int):
if test_coordinate2 is not None and isinstance(test_coordinate2, int):
if test_coordinate3 is not None and isinstance(test_coordinate3, int):
element_identifier = coord(element_identifier, test_coordinate1) + '-'
element_identifier = element_identifier + coord(test_coordinate2, test_coordinate3)
if element_identifier.lower() != 'page' and not exist(element_identifier):
print('[TAGUI][ERROR] - cannot find ' + element_identifier)
return ''
else:
send('read ' + _sdq(element_identifier) + ' to read_result')
send('dump read_result to tagui_python.txt')
read_result = _tagui_output()
return read_result
def snap(element_identifier = None, filename_to_save = None, test_coord1 = None, test_coord2 = None, test_coord3 = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using snap()')
return False
if element_identifier is None or element_identifier == '':
print('[TAGUI][ERROR] - target missing for snap()')
return False
if filename_to_save is None or filename_to_save == '':
print('[TAGUI][ERROR] - filename missing for snap()')
return False
if test_coord2 is not None and test_coord3 is None:
print('[TAGUI][ERROR] - filename missing for snap()')
return False
if isinstance(element_identifier, int) and isinstance(filename_to_save, int):
if test_coord1 is not None and isinstance(test_coord1, int):
if test_coord2 is not None and isinstance(test_coord2, int):
if test_coord3 is not None and test_coord3 != '':
element_identifier = coord(element_identifier, filename_to_save) + '-'
element_identifier = element_identifier + coord(test_coord1, test_coord2)
filename_to_save = test_coord3
if element_identifier.lower() != 'page' and not exist(element_identifier):
print('[TAGUI][ERROR] - cannot find ' + element_identifier)
return False
elif not send('snap ' + _sdq(element_identifier) + ' to ' + _esq(filename_to_save)):
return False
else:
return True
def load(filename_to_load = None):
if filename_to_load is None or filename_to_load == '':
print('[TAGUI][ERROR] - filename missing for load()')
return ''
elif not os.path.isfile(filename_to_load):
print('[TAGUI][ERROR] - cannot load file ' + filename_to_load)
return ''
else:
load_input_file = _py23_open(filename_to_load, 'r')
load_input_file_text = _py23_read(load_input_file.read())
load_input_file.close()
return load_input_file_text
def echo(text_to_echo = ''):
print(text_to_echo)
return True
def dump(text_to_dump = None, filename_to_save = None):
if text_to_dump is None:
print('[TAGUI][ERROR] - text missing for dump()')
return False
elif filename_to_save is None or filename_to_save == '':
print('[TAGUI][ERROR] - filename missing for dump()')
return False
else:
dump_output_file = _py23_open(filename_to_save, 'w')
dump_output_file.write(_py23_write(text_to_dump))
dump_output_file.close()
return True
def write(text_to_write = None, filename_to_save = None):
if text_to_write is None:
print('[TAGUI][ERROR] - text missing for write()')
return False
elif filename_to_save is None or filename_to_save == '':
print('[TAGUI][ERROR] - filename missing for write()')
return False
else:
write_output_file = _py23_open(filename_to_save, 'a')
write_output_file.write(_py23_write(text_to_write))
write_output_file.close()
return True
def ask(text_to_prompt = ''):
if _chrome():
return dom("return prompt('" + _esq(text_to_prompt) + "')")
else:
if text_to_prompt == '':
space_padding = ''
else:
space_padding = ' '
if _python2_env():
return raw_input(text_to_prompt + space_padding)
else:
return input(text_to_prompt + space_padding)
def keyboard(keys_and_modifiers = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using keyboard()')
return False
if keys_and_modifiers is None or keys_and_modifiers == '':
print('[TAGUI][ERROR] - keys to type missing for keyboard()')
return False
if not _visual():
print('[TAGUI][ERROR] - keyboard() requires init(visual_automation = True)')
return False
elif not send('keyboard ' + _esq(keys_and_modifiers)):
return False
else:
return True
def mouse(mouse_action = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using mouse()')
return False
if mouse_action is None or mouse_action == '':
print('[TAGUI][ERROR] - \'down\' / \'up\' missing for mouse()')
return False
if not _visual():
print('[TAGUI][ERROR] - mouse() requires init(visual_automation = True)')
return False
elif mouse_action.lower() != 'down' and mouse_action.lower() != 'up':
print('[TAGUI][ERROR] - \'down\' / \'up\' missing for mouse()')
return False
elif not send('mouse ' + mouse_action):
return False
else:
return True
def table(element_identifier = None, filename_to_save = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using table()')
return False
if element_identifier is None or element_identifier == '':
print('[TAGUI][ERROR] - target missing for table()')
return False
elif filename_to_save is None or filename_to_save == '':
print('[TAGUI][ERROR] - filename missing for table()')
return False
elif not exist(element_identifier):
print('[TAGUI][ERROR] - cannot find ' + element_identifier)
return False
elif not send('table ' + _sdq(element_identifier) + ' to ' + _esq(filename_to_save)):
return False
else:
return True
def wait(delay_in_seconds = 5.0):
time.sleep(float(delay_in_seconds)); return True
def check(condition_to_check = None, text_if_true = '', text_if_false = ''):
if condition_to_check is None:
print('[TAGUI][ERROR] - condition missing for check()')
return False
if condition_to_check:
print(text_if_true)
else:
print(text_if_false)
return True
def upload(element_identifier = None, filename_to_upload = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using upload()')
return False
if element_identifier is None or element_identifier == '':
print('[TAGUI][ERROR] - target missing for upload()')
return False
elif filename_to_upload is None or filename_to_upload == '':
print('[TAGUI][ERROR] - filename missing for upload()')
return False
elif not exist(element_identifier):
print('[TAGUI][ERROR] - cannot find ' + element_identifier)
return False
elif not send('upload ' + _sdq(element_identifier) + ' as ' + _esq(filename_to_upload)):
return False
else:
return True
def download(download_url = None, filename_to_save = None):
"""function for python 2/3 compatible file download from url"""
if download_url is None or download_url == '':
print('[TAGUI][ERROR] - download URL missing for download()')
return False
# if not given, use last part of url as filename to save
if filename_to_save is None or filename_to_save == '':
download_url_tokens = download_url.split('/')
filename_to_save = download_url_tokens[-1]
# delete existing file if exist to ensure freshness
if os.path.isfile(filename_to_save):
os.remove(filename_to_save)
# handle case where url is invalid or has no content
try:
if _python2_env():
import urllib; urllib.urlretrieve(download_url, filename_to_save)
else:
import urllib.request; urllib.request.urlretrieve(download_url, filename_to_save)
except Exception as e:
print('[TAGUI][ERROR] - failed downloading from ' + download_url + '...')
print(str(e))
return False
# take the existence of downloaded file as success
if os.path.isfile(filename_to_save):
return True
else:
print('[TAGUI][ERROR] - failed downloading to ' + filename_to_save)
return False
def frame(main_frame = None, sub_frame = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using frame()')
return False
if not _chrome():
print('[TAGUI][ERROR] - frame() requires init(chrome_browser = True)')
return False
# reset webpage context to document root, by sending custom tagui javascript code
send('js chrome_step("Runtime.evaluate", {expression: "mainframe_context = null"})')
send('js chrome_step("Runtime.evaluate", {expression: "subframe_context = null"})')
send('js chrome_context = "document"; frame_step_offset_x = 0; frame_step_offset_y = 0;')
# return True if no parameter, after resetting webpage context above
if main_frame is None or main_frame == '':
return True
# set webpage context to main frame specified, by sending custom tagui javascript code
frame_identifier = '(//frame|//iframe)[@name="' + main_frame + '" or @id="' + main_frame + '"]'
if not exist(frame_identifier):
print('[TAGUI][ERROR] - cannot find frame with @name or @id as \'' + main_frame + '\'')
return False
send('js new_context = "mainframe_context"')
send('js frame_xpath = \'(//frame|//iframe)[@name="' + main_frame + '" or @id="' + main_frame + '"]\'')
send('js frame_rect = chrome.getRect(xps666(frame_xpath))')
send('js frame_step_offset_x = frame_rect.left; frame_step_offset_y = frame_rect.top;')
send('js chrome_step("Runtime.evaluate", {expression: new_context + " = document.evaluate(\'" + frame_xpath + "\'," + chrome_context + ",null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0).contentDocument"})')
send('js chrome_context = new_context')
# set webpage context to sub frame if specified, by sending custom tagui javascript code
if sub_frame is not None and sub_frame != '':
frame_identifier = '(//frame|//iframe)[@name="' + sub_frame + '" or @id="' + sub_frame + '"]'
if not exist(frame_identifier):
print('[TAGUI][ERROR] - cannot find sub frame with @name or @id as \'' + sub_frame + '\'')
return False
send('js new_context = "subframe_context"')
send('js frame_xpath = \'(//frame|//iframe)[@name="' + sub_frame + '" or @id="' + sub_frame + '"]\'')
send('js frame_rect = chrome.getRect(xps666(frame_xpath))')
send('js frame_step_offset_x = frame_rect.left; frame_step_offset_y = frame_rect.top;')
send('js chrome_step("Runtime.evaluate", {expression: new_context + " = document.evaluate(\'" + frame_xpath + "\'," + chrome_context + ",null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0).contentDocument"})')
send('js chrome_context = new_context')
return True
def popup(string_in_url = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using popup()')
return False
if not _chrome():
print('[TAGUI][ERROR] - popup() requires init(chrome_browser = True)')
return False
# reset webpage context to main page, by sending custom tagui javascript code
send('js if (chrome_targetid !== "") {found_targetid = chrome_targetid; chrome_targetid = ""; chrome_step("Target.detachFromTarget", {sessionId: found_targetid});}')
# return True if no parameter, after resetting webpage context above
if string_in_url is None or string_in_url == '':
return True
# set webpage context to the popup tab specified, by sending custom tagui javascript code
send('js found_targetid = ""; chrome_targets = []; ws_message = chrome_step("Target.getTargets", {});')
send('js try {ws_json = JSON.parse(ws_message); if (ws_json.result.targetInfos) chrome_targets = ws_json.result.targetInfos; else chrome_targets = [];} catch (e) {chrome_targets = [];}')
send('js chrome_targets.forEach(function(target) {if (target.url.indexOf("' + string_in_url + '") !== -1) found_targetid = target.targetId;})')
send('js if (found_targetid !== "") {ws_message = chrome_step("Target.attachToTarget", {targetId: found_targetid}); try {ws_json = JSON.parse(ws_message); if (ws_json.result.sessionId !== "") found_targetid = ws_json.result.sessionId; else found_targetid = "";} catch (e) {found_targetid = "";}}')
send('js chrome_targetid = found_targetid')
# check if chrome_targetid is successfully set to sessionid of popup tab
send('dump chrome_targetid to tagui_python.txt')
popup_result = _tagui_output()
if popup_result != '':
return True
else:
print('[TAGUI][ERROR] - cannot find popup tab containing URL string \'' + string_in_url + '\'')
return False
def api(url_to_query = None):
print('[TAGUI][INFO] - although TagUI supports calling APIs with headers and body,')
print('[TAGUI][INFO] - recommend using requests package with lots of online docs')
return True
def run(command_to_run = None):
if command_to_run is None or command_to_run == '':
print('[TAGUI][ERROR] - command(s) missing for run()')
return ''
else:
if platform.system() == 'Windows':
command_delimiter = ' & '
else:
command_delimiter = '; '
return _py23_decode(subprocess.check_output(
command_to_run + command_delimiter + 'exit 0',
stderr=subprocess.STDOUT,
shell=True))
def dom(statement_to_run = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using dom()')
return ''
if statement_to_run is None or statement_to_run == '':
print('[TAGUI][ERROR] - statement(s) missing for dom()')
return ''
if not _chrome():
print('[TAGUI][ERROR] - dom() requires init(chrome_browser = True)')
return ''
else:
send('dom ' + statement_to_run)
send('dump dom_result to tagui_python.txt')
dom_result = _tagui_output()
return dom_result
def vision(command_to_run = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using vision()')
return False
if command_to_run is None or command_to_run == '':
print('[TAGUI][ERROR] - command(s) missing for vision()')
return False
if not _visual():
print('[TAGUI][ERROR] - vision() requires init(visual_automation = True)')
return False
elif not send('vision ' + command_to_run):
return False
else:
return True
def timeout(timeout_in_seconds = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using timeout()')
return False
global _tagui_timeout
if timeout_in_seconds is None:
return float(_tagui_timeout)
else:
_tagui_timeout = float(timeout_in_seconds)
if not send('timeout ' + str(timeout_in_seconds)):
return False
else:
return True
def present(element_identifier = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using present()')
return False
if element_identifier is None or element_identifier == '':
return False
# return True for keywords as the computer screen is always present
if element_identifier.lower() in ['page.png', 'page.bmp']:
if _visual():
return True
else:
print('[TAGUI][ERROR] - page.png / page.bmp requires init(visual_automation = True)')
return False
# check for existence of specified image file for visual automation
if element_identifier.lower().endswith('.png') or element_identifier.lower().endswith('.bmp'):
if not os.path.isfile(element_identifier):
print('[TAGUI][ERROR] - missing image file ' + element_identifier)
return False
elif not _visual():
print('[TAGUI][ERROR] - ' + element_identifier + ' identifier requires init(visual_automation = True)')
return False
# assume that (x,y) coordinates for visual automation always exist
if element_identifier.startswith('(') and element_identifier.endswith(')'):
if len(element_identifier.split(',')) in [2, 3]:
if not any(c.isalpha() for c in element_identifier):
if _visual():
return True
else:
print('[TAGUI][ERROR] - x, y coordinates require init(visual_automation = True)')
return False
send('present_result = present(\'' + _sdq(element_identifier) + '\').toString()')
send('dump present_result to tagui_python.txt')
if _tagui_output() == 'true':
return True
else:
return False
def count(element_identifier = None):
if not _started():
print('[TAGUI][ERROR] - use init() before using count()')
return int(0)
if element_identifier is None or element_identifier == '':
return int(0)
if not _chrome():
print('[TAGUI][ERROR] - count() requires init(chrome_browser = True)')
return int(0)
send('count_result = count(\'' + _sdq(element_identifier) + '\').toString()')
send('dump count_result to tagui_python.txt')
return int(_tagui_output())
def title():
if not _started():
print('[TAGUI][ERROR] - use init() before using title()')
return ''
if not _chrome():
print('[TAGUI][ERROR] - title() requires init(chrome_browser = True)')
return ''
send('dump title() to tagui_python.txt')
title_result = _tagui_output()
return title_result
def text():
if not _started():
print('[TAGUI][ERROR] - use init() before using text()')
return ''
if not _chrome():
print('[TAGUI][ERROR] - text() requires init(chrome_browser = True)')
return ''
send('dump text() to tagui_python.txt')
text_result = _tagui_output()
return text_result
def timer():
if not _started():
print('[TAGUI][ERROR] - use init() before using timer()')
return float(0)
send('dump timer() to tagui_python.txt')
timer_result = _tagui_output()
return float(timer_result)
def mouse_xy():
if not _started():
print('[TAGUI][ERROR] - use init() before using mouse_xy()')
return ''
if not _visual():
print('[TAGUI][ERROR] - mouse_xy() requires init(visual_automation = True)')
return ''
send('dump mouse_xy() to tagui_python.txt')
mouse_xy_result = _tagui_output()
return mouse_xy_result
def mouse_x():
if not _started():
print('[TAGUI][ERROR] - use init() before using mouse_x()')
return int(0)
if not _visual():
print('[TAGUI][ERROR] - mouse_x() requires init(visual_automation = True)')
return int(0)
send('dump mouse_x() to tagui_python.txt')
mouse_x_result = _tagui_output()
return int(mouse_x_result)
def mouse_y():
if not _started():
print('[TAGUI][ERROR] - use init() before using mouse_y()')
return int(0)
if not _visual():
print('[TAGUI][ERROR] - mouse_y() requires init(visual_automation = True)')
return int(0)
send('dump mouse_y() to tagui_python.txt')
mouse_y_result = _tagui_output()
return int(mouse_y_result)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/guznwang/TagUI-Python.git
git@gitee.com:guznwang/TagUI-Python.git
guznwang
TagUI-Python
TagUI-Python
master

搜索帮助