Hi guys-
I have some code that I am running on my system here (different dataset) and I was hoping to pull a second set of data from PythonAnywhere, but I keep getting the following error :
Traceback (most recent call last):
File "Jackson_Parcel_script.py", line 367, in <module>
getLinks("https://ascendweb.jacksongov.org/ascend/%28biohwjq5iibvvkisd1kjmm45%29/result.aspx")
File "Jackson_Parcel_script.py", line 33, in getLinks
for link in bsObj.find(id="mResultscontrol_mGrid_RealDataGrid").findAll('a'):
AttributeError: 'NoneType' object has no attribute 'findAll'
My code looks like this:
for link in bsObj.find(id="mResultscontrol_mGrid_RealDataGrid").findAll('a'):
parcel_link.append(link.text)
#print(parcel_link)
for test in parcel_link:
clickable = driver.find_element_by_link_text(test)
clickable.click()
time.sleep(2)
I just dont understand because my code has been running for the last 3 hours on my system with no errors - any help would be great.
ES