I'm attempting to retrieve values from a website

The values I’m attempting to retrieve are located within a red box.
So far, I’ve tried to get them using the Get Text, Extract DataTable, and Find Children Elements activities.
I haven’t tried using OCR activities because they might produce undesirable outputs.
I also attempted to examine its UiTree, but It is unhelpful.
I’ve also noticed that the site has what are called atomic nodes, which might be a problem.
If anyone would like to help, Here is the link-> Checkpoint

you jsut extract the all data as text then use the regex get all the value “sk182244: Check Point response to CVE-2024-24912” value

Regex: “\s\s\d{6}: [A-Za-z0-9]” (you need to modify as per your need)

MatchCollection matches = Regex.Matches(websiteText, pattern);
foreach (Match match in matches)
{
    extractedValues.Add(match.Groups["value"].Value);
}

This code work for you.

you are not able to extract the data using the Extract table because the page is not in table structure format

1 Like

I tried to use Get Text to extract all data as text, output returned empty.

@Burak_Baris_Gologlu hope this will help you

You can use below regex

1 Like

The problem starts from retrieving the text itself, I can handle the text manipulation later.
Get Text activities doesn’t work.

Hi @Burak_Baris_Gologlu ,

You can achieve it as follows.

  1. Click Result per Page - 100.
  2. Get the count of the result: 12
  3. Create a counter variable.
  4. Iterate the extracted count of results into the do while loop.
  5. Add a counter to the selector of the get text activity for which data you want to extract.

Check the attached workflow for your reference; hopefully, it works for you.
Test_Workflow.zip (527.6 KB)
image

Regards,
Vinit Mhatre

2 Likes

Thanks a lot, that works

1 Like

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