What are properties of find_element_by_class_name in selenium python?
问题 browser = webdriver.Firefox() browser.get(url) divs = browser.find_elements_by_class_name('class') Are there any properties of browser.find_element_by_class_name('class')? For example if I have code like that: <div class="foo"> <a href="" class="poo">one</a> <a href="" class="poo">two</a> <a href="" class="poo">three</a> </div> <div class="foo"> <a href="" class="koo">one</a> <a href="" class="koo">two</a> <a href="" class="koo">three</a> </div> I want to get text from 'a' tags. But firstly I