I Have a selenium bot I'm working on that works fine. But I can't find the accurate syntax I shall use to grep the body element. To reach an element I generally just use something like this:
canvas = driver.find_element("id", "canvas")
But for the body element, no one of the regular syntax works. I've tried:
find element_by("tagName", "body")
find element_by(by="tagName", value="body")
and different versions of tag_name, tagName, and so forth. I Can't use the By. since I have not imported it yet, which is a piece of cake anyway, but should it be necessary and would that help?