How to extract this out put

The image shows a form question titled "History Of Alcohol," with the "No" option selected from two radio buttons. (Captioned by AI) how to extract this output of this question knidly share work flow

Hi @domsmgtmeet22

Is the screenshot you have taken is from a form. Please specify?

Regards

its web page question how to handle this

Hi @domsmgtmeet22

How do you want to extract. If you want to extract the question and Answer seperately.

Then use Get Text activity to extract the text and regular expressions to extract No after Get Text.

If possible share the web page I will help you with flow.

Regards

@domsmgtmeet22

Use the Get Attribute activity to determine whether a radio button is in enabled or disabled mode.

i need yes or no only extract

@domsmgtmeet22

Please use the attached workflow


Main.xaml (23.0 KB)

Use the Indicate on Screen feature to select the checkbox or its associated label. Locate the “Yes/No” Text.

  • Drag and drop the Get Text activity.
  • Element: Select the element that contains the “Yes/No” text.

If checkboxIsChecked Then
checkboxLabel = “Yes”
Else
checkboxLabel = “No”
End If