Alleyn
4 years agoContributor
Testcomplete parsing an on screen value
Hi, is it possible to parse an on screen value in test complete? Scenario: screen captures the following in one field 2021\6756 - I store this in Variable "Case no" I then want to use the variab...
- 4 years ago
Hi ebarbera
Thanks for giving me a steer in the right direction.
I used the below - it was the Project.Variables.CaseNo that was throwing me. I can now manipulate the values as per your earlier post - thanks again!
def GetCaseNo():
Str = Project.Variables.CaseNo
# Uses the SubString method
Log.Message(aqString.SubString(Str, 0, 4))
Log.Message(aqString.SubString(Str, 5, 4))