img = "<img src='C:/Users/semnome/Desktop/21291010002.jpg'>" //Path it's ok, it open if I try it manually on URL
elm = driver.find_element_by_xpath(".//*[@id='content']")
driver.execute_script("arguments[0].innerHTML = arguments[1];", elm, img);
it's a local execution (chrome in debugging mode)
works to create the tag, but Image is not showing in browser (just img icon). What I'm doing wrong?