Click the checkbox using 'Find Children INPUT help

I tried to click the checkbox using ‘Find Children INPUT’, and I built it as shown in the screenshot, but it just skips without clicking. Can anyone help me? Thank you in advance

Hi,

Can you share settings of FindChildren activity?

And it may be better to use ForEach instead of ParallelForEach, to make things simpler.

Regards,

1 Like

@Yoichi
Thank you so much for your response
I am creating a process where, if the value stored in the database matches the value on the page, the checkbox is clicked, and the save button is pressed, performing this action for each checkbox one at a time

Hi,

Can you share specific content of Filter property and Scope property? (we cannot see them in the above image)
Also, in general , it’s unnecessary to turn on ContinueOnError.

Regards,

1 Like

@Yoichi
Thank you so much for your response

The filter is '<webctrl \'input\' />', and FindScopeFIND_DESCENDANTS

Hi

Is the target Checkbox type in HTML? If so, the filter string should be as the following.

<webctl tag='INPUT' type='checkbox' />

And it’s necessary to indicate target element of FindChildren, to make contain multiple checkboxes, as the following image.

image

Regards,

1 Like

@Yoichi

Thank you for your response.
I always feel grateful for your answers. Truly, thank you!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.