2017-08-23 21 views

答えて

1

これを試してみてください:

elements = driver.find_elements_by_css_selector('selector_required') 


# if you want to navigate through 
for e in elements: 
    # do some stuffs with 'e' 

# to access a single object 
e = elements[0] # will return the first element of a list 
関連する問題