We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f92775 commit e484dcaCopy full SHA for e484dca
src/examples/ExampleHrew.bas
@@ -77,6 +77,16 @@ Private Sub testNewWindows()
77
Set td = td.NextSibling
78
Loop
79
80
+ Dim nodes As Dictionary
81
+ Set nodes = browser.querySelectorAll("#VisibleReportContentMainRptViewerID_ctl09 table table table table > tbody > tr:nth-child(3) td")
82
+ Dim columnCount As Long
83
+ columnCount = 7
84
+ For Each v In nodes.Items
85
+ Set td = v
86
+ Debug.Print td.Value & " -- " & td.innerText
87
+ columnCount = columnCount - 1: If columnCount < 1 Then Exit For
88
+ Next v
89
+
90
' return to original/main window
91
browser.switchToMainWindow
92
browser.cdp.Page.BringToFront
0 commit comments