I’m automating some Windows app via rpaframework
, using mostly functionality of RPA.Windows. I have a tasks file that works up to a point:
*** Settings ***
Library RPA.Windows
*** Variables ***
*** Tasks ***
Set Text Into Notepad Window
Windows Run Notepad
Control Window subname:Notepad
Click name:File
Click name:Save
It opens File
menu just fine. But then “clicking” Save fails:
ElementNotFound: Element not found with locator 'name:Save'
Why is that? How can I fix it?