find_elements selenium python doc code example
Example 1: selenium select element by id
driver.findElement(By.id("ui-datepicker-div"));
Example 2: python selenium not returning correct source
driver.get('link here')
time.sleep(2) #Need sleep time to get all html
html = driver.page_source
print(html)