美好的一天。 使用硒獲取數據:Powershell。如何在表格中顯示結果?
$artist = $ie.FindElementsByXPath("//*[contains(@class, 'album__artist')]")
$title = $ie.FindElementsByXPath("//*[contains(@class, 'album__title')]")
$year = $ie.FindElementsByXPath("//*[contains(@class, 'album__year')]")
$link_artist = $ie.FindElementsByXPath("//*[contains(@class, 'album__artist')]").findelementbytagname("a").GetAttribute("href")
$link_album = $ie.FindElementsByXPath("//*[contains(@class, 'album__title')]").findelementbytagname("a").GetAttribute("href")
所有內容均發佈在單個列中。你怎麼能分開列?每個變量都有一個單獨的列。在此先感謝
請提供輸出數據的例子 –
你不給我們一個您輸入數據的樣本或您希望輸出的樣子。見[mcve] – Matt