Trying to figure out how to access the text in the screenshot below without pulling all the span tags.
Doing element = driver.find_elements_by_id('response') gives me a list, but I can't seem to dig down further to access the text I want.
I also tried this after doing some searching:
element = driver.find_element_by_xpath("//div[@id='response']/pre")
But I get the same result.
Any tips?

element = driver.find_elements_by_id('response')gives me a list <--- Have you tried justelement = driver.find_element_by_id('response')?