I want to ask you kindly to help me out here with a basic issue. Can't click on a image that has these 2 caracters: a title and src link. I tried until now with XPATH:
".//*[@id='resultsTable']/tbody/tr[2]/td[11]/a[2]/img"
elmlupa=browser.find_element_by_xpath('//a[img/src="/common/images/Detail.gif"]').click()
"//img[@title='details']"
##LATER EDIT: I used even with the XPATH from firebug/firepath:
#sortam dupa decision date manual
#clicuim pe prima lupa
browser.implicitly_wait(2)
browser.switch_to.default_content()
browser.switch_to.frame("main")
browser.implicitly_wait(2)
time.sleep(10)
elmlupa = browser.find_element_by_xpath(".//*[@id='resultsTable']/tbody/tr[2]/td[11]/a[2]/img").click()
Thank you in advance!