This repository was archived by the owner on Aug 24, 2020. It is now read-only.

Description
Hello.


Uses:
function getOtherData(const resultPage: string): string;
var
elements: IHtmlElementList;
begin
try elements := ParserHTML(resultPage).Find('#page_info_wrap .page_name'); except end;
try if (Assigned(elements)) and (elements.Count > 0) then SetJSONValue(Result, 'fio', elements.Items[0].Text); except end;
try elements := ParserHTML(resultPage).Find('#page_avatar .page_avatar_img'); except end;
try if (Assigned(elements)) and (elements.Count > 0) then SetJSONValue(Result, 'avatar', elements.Items[0].Attributes['src']); except end;
end;

Climbs an exception. What could be wrong?