- Регистрация
- 08.08.2015
- Сообщения
- 98
- Благодарностей
- 14
- Баллы
- 8
Код:
Tab olx = instance.ActiveTab;
if (olx.IsBusy)
{
olx.WaitDownloading();
}
HtmlElementCollection AdCollection = olx.FindElementsByXPath("//tr[starts-with(@class, 'tr row-elem')]");
List<string> GoodTitle = project.Lists["Нужные строки"].ToList();
foreach (HtmlElement Ad in AdCollection)
{
var title = Ad.FindChildByAttribute("h3", "class", "normal brkword fbold", "regexp", 0);
string strListElement = GoodTitle.First();
if (title.GetAttribute("title").Contains(strListElement))
{
project.SendInfoToLog(title.GetAttribute("title"));
GoodTitle.RemoveAt(0);
}
}