The page I\'m looking at contains :
text 1
text 2
text 3 text 4
The following code will give you the HTML in the div element:
sel = selenium('localhost', 4444, browser, my_url)
html = sel.get_eval("this.browserbot.getCurrentWindow().document.getElementById('1').innerHTML")
then you can use BeautifulSoup to parse it and extract what you really want.
I hope it helps