from requests_html import HTMLSession
session = HTMLSession()
for page_index in range(1, 13):
r = session.get(f'https://cset.georgetown.edu/research/?fwp_paged={page_index}')
articles = r.html.find(".teaser")
for article in articles:
title = article.find('h4')[0]
print(f"Title: {title.text}")
authors = article.find('.teaser__authors')
if authors:
print(f"Authors: {authors[0].text}")
print(f"Abstract: {article.find('p')[0].text}")
print(f"URL: {title.absolute_links.pop()}")
print()
title = article.find("h4")[0]
s = title.absolute_links
s.pop()