Need search results found in Action Designer

tae861

Новичок
Регистрация
05.05.2022
Сообщения
4
Благодарностей
0
Баллы
1
I want the last value found. For example, it's number 13, I want to know. How to get this value, set in the Match field
 

Вложения

myndeswx

Client
Регистрация
15.05.2017
Сообщения
399
Благодарностей
88
Баллы
28
C#:
Tab tab = instance.ActiveTab;

tab.Navigate("https://zennolab.com/en/");
if (tab.IsBusy) tab.WaitDownloading();

HtmlElementCollection heCol = tab.FindElementsByAttribute("a","tagname","a","regexp");

return heCol.Count();
returns all elements from this search, so it's easier to adjust it for yourself
94862
 

tae861

Новичок
Регистрация
05.05.2022
Сообщения
4
Благодарностей
0
Баллы
1

Вложения

myndeswx

Client
Регистрация
15.05.2017
Сообщения
399
Благодарностей
88
Баллы
28
It's completely different programs. I believe in ZD with a cube you can get apps XML to variable, then parse the XML, not sure about the C# methods available
 

Кто просматривает тему: (Всего: 1, Пользователи: 0, Гости: 1)