I am trying to extract the search results count from an IEEE Xplore search given the search results URL using the selenium webdriver. I'm not getting any errors from the code below, but I am unsure how to proceed from here.
Website Element of Interest:
Element Inspection Results:
url = 'https://ieeexplore.ieee.org/search/searchresult.jsp?newsearch=true&queryText=web%20scraping'
chrome_driver_path = '\\xxxx\chromedriver.exe'
driver.get(url)
wait.until(presence_of_element_located((By.CLASS_NAME, "strong")))
#result = driver.??????
print(result)
driver.close()