如何通过 VB.NET 自动关闭网站上的叠加层?
How do I automatically close an overlay on a website through VB.NET?
我正在编写代码以在网站上自动填充数据,但叠加层阻止我这样做。我已经在网络浏览器中打开了该页面。我想知道是否有任何方法可以关闭 VB.NET.
的叠加层
这是网页:
https://pgi.billdesk.com/pgidsk/pgijsp/citicard/citibank_card.jsp
这是叠加层:
这就可以了!
Dim DvOvr = PayBillsBrowser.Document.GetElementById("overlay-wrapper")
If DvOvr IsNot Nothing Then
DvOvr.Style = "Display:none
End If
我正在编写代码以在网站上自动填充数据,但叠加层阻止我这样做。我已经在网络浏览器中打开了该页面。我想知道是否有任何方法可以关闭 VB.NET.
的叠加层这是网页: https://pgi.billdesk.com/pgidsk/pgijsp/citicard/citibank_card.jsp
这是叠加层:
这就可以了!
Dim DvOvr = PayBillsBrowser.Document.GetElementById("overlay-wrapper")
If DvOvr IsNot Nothing Then
DvOvr.Style = "Display:none
End If