Skip to content

CHECK Action: CHECK

The CHECK action is used to check a checkbox located beside specified text within a PDF file. This functionality is useful for automating form-filling or validating checkboxes based on predefined criteria.

Example: You have a PDF form that includes a checkbox next to the text “Subscribe to Newsletter.” You want to automate the process of marking this checkbox.

Steps to Configure:

  1. Add a new step.
  2. Select Set a Variable Value from the Action dropdown.
  3. Enter a variable name in Element Key (e.g., CheckboxStatus). This variable will store the result of the operation.
  4. Click on Form, select Functions, and choose PDFHANDLE Functions.
  5. In the Cmd field, select CHECK and provide the following parameters:
    • FPath: Specify the path to the PDF file (e.g., C:\Documents\NewsletterForm.pdf).
    • Text: Enter the text adjacent to the checkbox that needs to be checked (e.g., Subscribe to Newsletter).
  6. Click Save.
scrn-check-command-tabular-view
Tabular View
scrn-check-command-card-view
Card View

Outcome on execution:

  • The checkbox adjacent to the specified text is marked as checked in the PDF file.
  • The result of the operation (true for success, false for failure) is stored in the variable defined in the Element Key field. This variable can be referenced in subsequent steps of the automation process using the syntax ${VariableName} (e.g., ${CheckboxStatus}).

Back To Top