There is a page with a summary ( https://ekb.zarplata.ru/resume ) I need to choose names and surnames. Opened the code through f12, found a place in the html code for the corresponding first and last names. Copied XPath.
Next, there is the following C # code:
HtmlWeb web = new HtmlWeb(); var doc = web.Load("https://ekb.zarplata.ru/resume"); var node = doc.DocumentNode.SelectNodes("//*[@id=\"app\"]//div//div//div//div//div//div//div//div//div//div//div//div//div//div//div//div//div//div//span"); In SelectNodes I pasted just what I copied to XPath. Only put the screening where necessary. But in the end, my node variable is null . And it should contain the names and surnames of the summary.
docwill be the source code of the page of the site without a summary. - trydex