Finding option for check box

I have multiple option from there I need to select more than one option. by which activity I can get the solution.


in the aove format i was expecting the solution. where user can select more than one option from the given options.

(AAA,BBB,CCC,DDD) are in string and array format out of which i want to give option to the user (at run time ) to select out of them (one or more than one ) which bot will take it in a variable.
Kindly give solution in UiPath.

@aditi.bhatt

Use click activity inside loop with loop argument to be the array of answers to select

And inside loop use click with dynamic selector where you would use the innertext property to select the required values alone

Selector loops somethign like this

<webctrl tag='DIV' innertext='{{currentItem}}' />

For exact selector indicate one of the option in ui explorer and remove the option specific values except innertext …so that we can add variable in place of it and use in selector

Cheers

Hello Team,
In UiPath i have “input dialog” activity where we can selct only one out of the given options at run time(Ex: {AAAA,BBB,CCC,DDD}) where i have given {AAAA,BBB,CCC,DDD} in string format
Now i want my use can able to select more than one option from the given list (AAAA,BBB,CCC,DDD) At run time. Plz suggect .
Note: I am not working on web automation so we don’t have any option to use click activity.

Hi @aditi.bhatt,

Hope it helps.

Thanks!

Hi @aditi.bhatt ,
Thanks for reaching out to UiPath community,

Using the “Check” Activity:

If you’re specifically working with checkboxes, UiPath has a “Check” activity that is designed for this purpose. You can use it to check or uncheck checkboxes.

-Drag and drop a “Check” activity onto your workflow.
-In the “Element” property, indicate the checkbox you want to check.
-In the “Action” property, select either “Check” or “Uncheck” based on your requirement.

Regards,
@pratik.maskar

@aditi.bhatt

you have an option to create a UiPath form where you can given multiple choice options as well

cheers