开发者

HTML Page Title in Excel VBA

开发者 https://www.devze.com 2023-04-09 18:08 出处:网络
Given an url, how can I get the title of the html page in VBA in Excel? For example s开发者_运维知识库uppose I have three urls like :

Given an url, how can I get the title of the html page in VBA in Excel?

For example s开发者_运维知识库uppose I have three urls like :

  • http://url1.com/somepage.html
  • http://url2.com/page.html
  • http://url3.com/page.html

Now I need to get the title of these html pages in another column. How do I do it?


Remou's answer was VERY helpful for me, but it caused a problem: It doesn't close the Internet Explorer process, so since I needed to run this dozens of times I ended up with too many IEs open, and my computer couldn't handle this.

So just add

wb.Quit

and everything will be fine.

This is the code that works for me:

Function GetTitleFromURL(sURL As String)
Dim wb As Object
Dim doc As Object

Set wb = CreateObject("InternetExplorer.Application")

wb.Navigate sURL

While wb.Busy
    DoEvents
Wend

GetTitleFromURL = wb.Document.Title

wb.Quit

Set wb = Nothing
End Function


I am not sure what you mean by title, but here is an idea:

Dim wb As Object
Dim doc As Object
Dim sURL As String

Set wb = CreateObject("InternetExplorer.Application")

sURL = "http://lessthandot.com"

wb.Navigate sURL

While wb.Busy
    DoEvents
Wend

''HTML Document
Set doc = wb.document

''Title
Debug.Print doc.Title

Set wb = Nothing


if you use Selenium :

Sub Get_Title()
Dim driver As New WebDriver
debug.print driver.Title
End Sub
0

精彩评论

暂无评论...
验证码 换一张
取 消