I created new UI automation it is working fine but it is using mouse for whole automation, is it possible to do automation without mouse i.e it should work in background and i can use mouse for any other purpose ?
Hey @Abhi_Nande Welcome to @UiPath_Community
Yes, All Activities of UiAutomation have a property i.e Input Mode.
Choose Simulate option from that dropdown to all those specific activities.
Or Easiest way is you definitely used Use Application/Browser Activity as parent activity for all Ui Activities like Click and TypeInto.
Change Input Mode of that activity to Simulate, all the activities will by default uses same as App/Browser property.
Screenshot of Use Application/Browser Activity Property:
Screenshot of Click Activity Property:
By selecting these properties you can do other activity simultaneously!
Docs Link for your reference:
Happy Automation!
Best regards,
Ajay Mishra
Thanks @Ajay_Mishra it is working fine but how to handle the checkbox ?
Handling checkboxes with the Simulate Input method in UiPath can be challenging because this method interacts with the UI elements at a lower level and may not always trigger the desired checkbox behavior.
- Use a Click Activity with a Simulate Click.
- You can use a combination of activities like Get Attribute to verify the checkbox’s status.
Note:
Common attributes to check:
checked: Indicates whether the checkbox is selected (value is true or false).
aria-checked: Often used in web-based applications to indicate state.
Hope I cleared your doubt, if yes then please mark above post as solution.
So, that it will help others to find correct solution!
Best regards,
Ajay Mishra
Thank you so much, it is working fine.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.