I’d like to import RPA.Desktop.windows at windows 10, but it doesn’t work.
Here is some sources.
- conda.yaml
channels:
- conda-forge
dependencies:
- python=3.9.13
- pip=22.1.2
- pip:
- rpaframework==22.0.0
- rpaframework-windows==7.0.2
- tasks.robot (I wrote)
*** Settings ***
Library RPA.Desktop.Windows
Suite Teardown Close all applications
*** Tasks ***
Open Calculator using run dialog
${result}= Open using run dialog calc.exe Calculator
${result}= Get Window Elements
Send Keys 5*2=
${result}= Get element partial name:Display is
Log Many ${result}
${result}= Get element rich text id:CalculatorResults
Should Be Equal As Strings ${result} Display is 10
${result}= Get element rectangle partial name:Display is
${result}= Is Element Visible CalculatorResults
${result}= Is Element Enabled partial name:Display is```
I've tried to change environment PATH and python install location, but nothing happens.