Search code examples
automationpycharmuipathuipath-studio

How to indicate an element on a pop-up panel in UiPath?


I'm doing an automation of PyCharm using UiPath. When I want to create a python file in this manner

File > New > Python File

After clicking "New", a pop-up panel appears on the screen in which the "Python File" option is lying. Now the problem is I cannot successfully select an element (Python File) inside that panel. One thing to note is, I've already tried "Click Image activity". That unfortunately didn't work for me.

1. Is there any way to do this?

2. Is working with panels different from working with window?


Solution

  • enter image description here

    I think your bot is unable to click on "python file" option as given in the screenshot. If the click activity is not working in this case, then please try the send hotkey activity and select arrow down. Once you are able to click File --> New, then automatically the cursor will be in the first option in the list which is file. Therefore the send hotkey (4 times arrow down) will take it to the python file option.

    Again use the send hotkey activity to press enter. Your task is done.