Feliks
Feliks

Reputation: 33

RPA Express (Workfusion) Web Element seting a checkbox

I am new to RPA Express (Workfusion) and I can't figure out how to set a checkbox to true using Web Element - set by xpath. What needs to be pun into a variable to set a checkbox to CHECKED status?

I can't use Click Mouse function as it would toggle the status while my goal is to ensure that a checkbox is set to TRUE always.

Upvotes: 1

Views: 532

Answers (1)

You can do the following:

  1. Use the Web Element

    • get mode
    • tick Use element attribute
    • type checked
    • select a variable for Output
  2. If the Output variable is true -> do nothing

  3. If the Output variable is false -> click the checkbox

Upvotes: 1

Related Questions