Jey1
3 years agoNew Contributor
TestComplete
How to highlight any element with TestComplete
for example in selenium with JavaScript executer its possible to highlight any element you want
its helping for debugging purposes
Jey1 ,
in testcomplete you can use Sys.HighlightObject() to highlight any particular element.
please find the below sample:
def Main(): WshShell.Run("notepad") wndNotepad = Sys.Process("notepad").Window("Notepad") wndNotepad.Activate() Sys.HighlightObject(wndNotepad)