beuaaa / pywinauto_recorder

A record-replay tool to automate GUI via pywinauto
https://pywinauto-recorder.readthedocs.io/
MIT License
127 stars 24 forks source link

Path not correctly constructed without contextual UIPath #42

Closed beuaaa closed 2 years ago

beuaaa commented 2 years ago

This code:

left_click("Calculator||Window->*->One||Button")

must behave like:

with UIPath("Calculator||Window"):
    left_click("*->One||Button")

But the path is not correctly constructed in the first code.