table = driver.find_element_by_xpath('//div[@class="table"]')
rows = table.find_elements_by_xpath('//div')
for row in rows:
print(row.text())
rows = driver.find_element_by_xpath('//div[@class="table"]//div')
for row in rows:
print(row.text())