我写了一个VBA,它使用selenium chrome web驱动程序打开一个Web链接来清除数据,我遇到了一些问题,我需要你对这些人提出建议。
代码示例和结果1: 错误已激活
Sub test_supplements_store()
Dim driver As New ChromeDriver
Dim post As Object
i = 1
driver.Get "https://www.thesupplementstore.co.uk/brands/optimum_nutrition?page=4"
On Error Resume Next
For Each post In driver.FindElementsByClass("desc")
Cells(i, 1) = post.FindElementByTag("a").Attribute("title")
Cells(i, 2) = Trim(Split(post.FindElementByClass("size").Text, ":")(1))
Cells(i, 3) = post.FindElementByXPath(".//span[@class='now']//span[@class='pricetype-purchase-unit multi-price']//span[@class='blu-price blu-price-initialised']").Text
Cells(i, 4) = post.FindElementByTag("a").Attribute("href")
i = i + 1
Next post
End Sub
代码示例和结果2:停用错误
Sub test_supplements_store()
Dim driver As New ChromeDriver
Dim post As Object
i = 1
driver.Get "https://www.thesupplementstore.co.uk/brands/optimum_nutrition?page=4"
'On Error Resume Next
For Each post In driver.FindElementsByClass("desc")
Cells(i, 1) = post.FindElementByTag("a").Attribute("title")
Cells(i, 2) = Trim(Split(post.FindElementByClass("size").Text, ":")(1))
Cells(i, 3) = post.FindElementByXPath(".//span[@class='now']//span[@class='pricetype-purchase-unit multi-price']//span[@class='blu-price blu-price-initialised']").Text
Cells(i, 4) = post.FindElementByTag("a").Attribute("href")
i = i + 1
Next post
End Sub
Sub test_supplements_store()
Dim driver As New ChromeDriver
Dim post As Object
i = 1
driver.Get "https://www.thesupplementstore.co.uk/brands/optimum_nutrition"
On Error Resume Next
For Each post In driver.FindElementsByClass("desc")
Cells(i, 1) = post.FindElementByTag("a").Attribute("title")
Cells(i, 2) = Trim(Split(post.FindElementByClass("size").Text, ":")(1))
Cells(i, 3) = post.FindElementByXPath(".//span[@class='now']//span[@class='pricetype-purchase-unit multi-price']//span[@class='blu-price blu-price-initialised']").Text
Cells(i, 4) = post.FindElementByTag("a").Attribute("href")
i = i + 1
Next post
End Sub
第一个示例除了价格之外,还返回网站上的所有74个项目,但是在很长一段时间内大约两分钟。
第二个示例仅将标题返回到工作表的第一个单元格中并弹出错误。
第三个示例仅返回21但未返回那些现在没有标签的项目的价格。脚本运行得非常快,不到10秒。
请告知如何将所有74件商品与标题,尺寸,价格,href一起退回。
答案 0 :(得分:1)
您正在处理的页面已应用了铺设方法。这是因为所有项目一次不加载;相反,当你向下滚动时,它会加载其余部分。我在代码中使用了一个小的javascript函数,它解决了这个问题。我希望这就是你要找的结果。
Sub test_supplements_store()
Dim driver As New ChromeDriver
Dim post As Object
driver.Get "https://www.thesupplementstore.co.uk/brands/optimum_nutrition"
On Error Resume Next
Do While EndofPage = False
PrevPageHeight = CurrentPageHeight
CurrentPageHeight = driver.ExecuteScript("window.scrollTo(0, document.body.scrollHeight);var CurrentPageHeight=document.body.scrollHeight;return CurrentPageHeight;")
driver.Wait 3000
If PrevPageHeight = CurrentPageHeight Then
EndofPage = True
End If
Loop
For Each post In driver.FindElementsByXPath("//li[contains(@class,'prod')]")
i = i + 1: Cells(i, 1) = post.FindElementByXPath(".//a").Attribute("title")
Cells(i, 2) = Split(post.FindElementByXPath(".//p[@class='size']").Text, ": ")(1)
Cells(i, 3) = post.FindElementByXPath(".//p[@class='price']//span[@class='now']//span|.//p[@class='price']//span[@class='dynamictype-single']").Text
Cells(i, 4) = post.FindElementByXPath(".//a").Attribute("href")
Next post
End Sub