not able to click a button
See original GitHub issueHi All,
I am trying to automate windows based application which contains spaces in the application name. I am able to open app with the help of below code:
from pywinauto.application import Application
app=Application().start('c:\\program files\\ESPWorkstation.exe')
we will receive a popup window (below) which allows us to proceed further
now i need to click on load button to proceed further.
Can some one help me on this issue?
Also, I need to navigate to a window which contains spaces after clicking load button to proceed with.
Thanks, rajarameshmamidi
Issue Analytics
- State:
- Created 5 years ago
- Comments:38 (16 by maintainers)
Top Results From Across the Web
Cannot click button in HTML? - javascript - Stack Overflow
I have a button and there is a problem with it: it can be seen but it cannot be clicked. I tried changing...
Read more >I can not open start button by clicking on it nor can I get to my
1. Press Ctrl + Alt + Del keys and select Task manager. · 2. Select "Windows Explorer" on the list. · 3. Click...
Read more >How to Fix the Left Click Mouse Button Not Working on ...
Right-click on the Start Menu and then choose Device Manager. · Next, use your keyboard arrows to scroll down to Mice and other...
Read more >BOT is not able to click on button as windows task bar is ...
BOT is not able to click on button as windows task bar is hiding some control. ... Try flag SimulateClick property to True....
Read more >How to Fix Mouse Right-click Button Not Working in Windows ...
How to fix the mouse right- click button not working on Windows 10 PC? Is your mouse right- click ... Your browser can't...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Hi Folks Even i am trying to do similar thing … i just opened my app which needs to be automated. Hope i have clearly mentioned now what am trying to in the below code as a comment
https://stackoverflow.com/questions/24606219/how-to-perform-click-action-on-button-or-text-field-by-pywinauto As answered in the above stackoverflow question, was not able to execute succesfully by mentioned two level hirearchies to perform the desired UI automation
Hi @rajarameshmamidi this is easy to use spaces with key access instead of attribute access:
Anyway the name like
app.Load_the_User_Profileshould work since thebest_matchalgorithm is resistant to typos. This is approximate matching of the name.For more details I’d recommend to learn the Getting Started Guide first before submitting so many questions. If some paragraph is unclear in the guide, it’s a good reason to submit an issue.
Thanks for understanding.