This code does not find the id with testLog since, I think, updated to version 19.05 of Eiffel Studio. I have located the id in the webbrowser. In general the id identification does not seem to work any longer. I have also verified that I have the latest version of WedBriverEiffel
create wait.make (web_driver, 30)
wait.until_when (agent expected_title(web_driver, "BSharp ToDo"))
if attached web_driver.get_page_tile as l_title then
print ("%NPage title is:" + l_title)
else
report_failure := true
end
if attached {WEB_ELEMENT} web_driver.find_element ((create {SE_BY}).id ("testLog")) as log then
print ("%NTeslog id:" + log.element)
else
report_failure := true
end