Can't you just call the browser object inside your selenium environment? For example:
self.browser.find_elements_by_tag_name("div")
Should return you an array of divs. You can also find by class, id, and so on.
Edit Below is the code to create your 'browser' object.
from selenium import webdriver #The browser object
self.browser = webdriver.Firefox() #I Use firefox, but can do chrome, IE, and safari i believe
Then you should be able to do as shown above with the find_elements_by_tag_name
.