Hello ! I am still working on my testcase “KeePass” (initial issue #806)
I have move to Python for the solution because in this case it seems to be easier.
But still I have some problems:
One is to define the locator for the group out of the list.
if I use
grp_name = "name:" + grp_elem.name + " depth:16"
print("group_name=", grp_name)
lib.click(grp_name)
all groups are working fine if there is no space in the name (ProblemName1.zip file log.txt).
If I use
grp_name = "name:'" + grp_elem.name + "' depth:16"
print("group_name=", grp_name)
lib.click(grp_name)
none of the groups is working as you can see in ProblemName2.zip file log.txt
I have enclosed the program KeePassV2 and the logfile py.log
ProblemName2.zip (16.7 KB)
ProblemName1.zip (44.7 KB)