Pls Help me how to use scrolldown or click event related to selenium in php
I stucked a lot .
Are you looking for
// getting the element
$element = $driver->findElement($by)
// scroll to it
$element->getLocationOnScreenOnceScrolledIntoView()
// click it
$element->click()
Is there a way to emulate the mouse wheel tho?
Most helpful comment
Are you looking for