Youtube Scraper c# selenium

本文关键字:selenium Scraper Youtube | 更新日期: 2023-09-27 18:12:50

所以我想抓取youtube上以下链接的所有链接:https://www.youtube.com/my_videos?o=U

这就是我在c# win form selenium firefox drivers中尝试的

IList<string> all = new List<string>();
foreach (IWebElement element in driver.FindElements(By.ClassName("vm-video-list")))
{
     all.Add( element.FindElement(By.TagName("a")).GetAttribute("href").ToString());
}
File.WriteAllLines("GrabbedLinks.txt", all);

所以没有错误显示,但它只抓取一个链接…而不是全部显示。

Youtube Scraper c# selenium

您正在迭代具有vm-video-list类的元素,但您需要迭代具有vm-video-list类的ol列表中的链接:

foreach (IWebElement link in driver.FindElements(By.CssSelector("ol.vm-video-list a.vm-video-title-content")))
{
    all.Add(link).GetAttribute("href").ToString());
}