I\'m trying to drive part of a web map akin to Google Maps, where zoom in/out is done by scrolling while moused over. Ideally, I\'d like to be able to do something like this
On google map, there is a zoom in/out button. You can use it instead of mouse scroll.
//To click on zoom in
driver.find_element_by_id('widget-zoom-in').click()
//To click on zoom out
driver.find_element_by_id('widget-zoom-out').click()