also, slides are up. there’s some pretty interesting ones stuff..phantomJS, integration with CI. Mortgage Driven Development was a funny little find ;p
Selenium::Remote::Driver - mouse_move_to_location
I’ve been trying to figure out how to use move the mouse in Selenium Webdriver. I’m using perl, so I’m using the Perl bindings obviously - Selenium::Remote::Driver has a function called mouse_move_to_location, and the documentation for that is the same as what is provided officially by the Selenium project, and both weren’t very forthcoming with why I couldn’t get it to work.
I’ve been banging my head against the wall for this one and eventually just gave up, but the whole time the answer was staring me in the face. The syntax for the arguments to this function in the documentation is different from any of the others - it accepts a hash, like {element => $element}, not just a WebElement or a Sizzle locator or anything like that. Sheesh. I feel pretty dumb about that, but at least it’s solved now :)