Mouse scroll wheel with selenium webdriver, on element without scrollbar?

前端 未结 4 1664
春和景丽
春和景丽 2020-11-30 10:20

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

4条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-30 11:10

    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()
    

提交回复
热议问题