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
I tried to use Get Text to extract all data as text, output returned empty.
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.
- Click Result per Page - 100.
- Get the count of the result: 12
- Create a counter variable.
- Iterate the extracted count of results into the do while loop.
- 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)
Regards,
Vinit Mhatre
Thanks a lot, that works
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.