ThrottleWorks
Excel Ninja
Hi,
I am trying to build a web crawler for learning process.Have never done it before.
I am reading various Google links for learning purpose. Will try to put my WIP code here.
Meanwhile can anyone here please help me in this.
Please refer attached file for more details.
How do put values in 'Go' box.
Also, I am trying this on IE 11.
	
	
	
		
				
			I am trying to build a web crawler for learning process.Have never done it before.
I am reading various Google links for learning purpose. Will try to put my WIP code here.
Meanwhile can anyone here please help me in this.
Please refer attached file for more details.
How do put values in 'Go' box.
Also, I am trying this on IE 11.
		Code:
	
	Sub FirstWebCrawler()
    Dim IEexp As Object
  
    'This line creates new instance of IE
    Set IEexp = CreateObject("InternetExplorer.Application")
  
    IEexp.Visible = True
  
    'This link will open URL mentioned in cell B2
    Range("B1").Select
    Selection.Hyperlinks(1).Follow NewWindow:=False, AddHistory:=True
End Sub
	Attachments
			
				Last edited: