I want to get the text "Cleaning General: Audit Based Update" in the HTML below. It should have the xpath:
//*[@id="context_bar"]/table/tbody/tr/td[5]/div
How do I convert the following Python ElementTree code to Selenium?
browser.find_element_by_xpath('//*[@id="context_bar"]/table/tbody/tr/td[5]/div/@title').text()
with the following HTML:

'//*[@id="context_bar"]/table/tbody, check it works, then add xpath components one-at-a-time until you find where the problem is. Tell us where that is. If you don't debug it and describe the problem better, then we can't help you.title = html.etree.HTML(content).xpath('//*[@id="context_bar"]/table/tbody/tr/td[5]/div/@title')[0]