新的论坛,新的 selenium VBA。道歉提前为我的无知。但是,我已经搜索了任何VBA版本的这一捕获整个页面元素没有插件或使用Java。
我想保持尽可能简单,捕捉一个完整的页面截图,然后粘贴到Excel表从剪贴板。
到目前为止,我知道它可以改进,有些可能是不必要的,但我不能告诉为什么它不会工作时,bot.TakeScreenshot.Copy
确实工作,但只捕捉可见的屏幕。
Public Sub CommandButton1_Click()
Dim bot As New WebDriver, rng As Range
Set rng = Range(Worksheets("sheet1").Range("A2"),
Worksheets("sheet1").Range("A2").End(xlDown))
'this loops through each href in cells navigating to the page unless the cell has end in it
For Each cell In rng
TextBox2.Text = ActiveCell.Text
TextBox3.Text = ActiveCell(1, 2).Text
If ActiveCell.Text = "End" Then
bot.Quit
Else
bot.Start "chrome", TextBox2.Text
bot.Window.Maximize
bot.Get "/"
'this takes a screenshot of each url in the loop and copys it
bot.captureEntirePageScreenshot.Copy
'bot.TakeScreenshot.Copy
'this creates a new sheet names it according the relavent test related to the url and pastes it in that newlt created sheet
ActiveWorkbook.Sheets.Add.Name = ActiveCell(1, 2).Text
ActiveSheet.PasteSpecial
'this goes back to the original sheet to continue with loop
Worksheets("sheet1").Select
ActiveCell.Offset(1, 0).Select
bot.Quit
End If
Next
End Sub
2条答案
按热度按时间brccelvz1#
使用无头浏览器
这取自selenium附带的示例代码
在win7计算机上... C:\用户\xxxx\应用程序数据\本地\SeleniumBasic\示例\VBScript
mklgxw1f2#
除了来自@jsotola的答案外,我发现您不需要无头浏览器来完成此操作。
此外,如果需要,您可以只对一个对象进行屏幕截图: