I'm working on automating a Website to excel copy -paste work. The website here is a government website, so a little tricky to handle. I have a problem in extracting data from this website : ------ http://nhb.gov.in/IndexPage.aspx?enc=nRXYbvwNFTF218kodGo9fg==
Few project codes for trying out are :
- 37TTG0000170
- 28AAP0023256
- 23MP0006837
- 23AMP0006839
I have a list of project codes, which should be taken from the attached excel file, pasted in the website and then clicked on Verify Button. 
Then in the next page the the same project code is hyperlinked, which upon clicking leads us to our results page with information about the project, which is to be extracted and pasted into the excel sheet beside the respective project code, such as those tables and data.(That's a later part which can be tweaked).
The next hurdle is: To take the Next Project Code from the sheet , the page needs to be like the first screenshot, which can be achieved via clicking on "Go Back To List". See below image:
Once clicked it takes back to the page in which we need to click on "Go back to Search Page", which takes us to main page from where we started and only then we can paste the new project code.
I took a try at the first step: 1)Open the Page 2)Input the Project Code 3)Clicking on Very button
With the below code, but there i get an error when the chrome opens......

Option Explicit
Public Sub NHBsite()
Dim bot As WebDriver, rng As Range, Cell As Range
Dim ws As Worksheet
Const URL As String = "http://nhb.gov.in/IndexPage.aspx?enc=nRXYbvwNFTF218kodGo9fg=="
Set bot = New ChromeDriver
Set ws = ThisWorkbook.Worksheets("Data")
Set rng = ws.Range(ws.Range("A2"), ws.Range("A2").End(xlDown))
'bot.Window.Maximize
For Each Cell In rng
bot.Get URL
bot.FindElementById("ctl00_ContentPlaceHolder1_ctl00_txtProjectCode").SendKeys Cell.Value
bot.FindElementById("ctl00_ContentPlaceHolder1_ctl00_btnSearchProject").Click
bot.FindElementById("ctl00_ContentPlaceHolder1_ctl00_gvSerachDetails_ctl02_lblProjectCode").Click
'bot.Wait 1000
'bot.TakeScreenshot.SaveAs (ThisWorkbook.Path + "/Screenshot_" + Cell.Value + ".jpg")
Next
bot.Quit
End Sub
Please help me on this. I'm sitting daily like 6-7 hours on this , learning from websites as well, going thru YouTube videos and E-books too.

