I am trying to zoom out webpage to 60% using below code.But this code is not working and also i am not getting any error.Please correct me where i am wrong.
below is my code:-
driver.ExecuteScript ("window.document.body.style.zoom = '60'")
To zoom out the webpage to 60% you can use either of the following line of code :
driver.ExecuteScript "document.body.style.transform='scale(0.6)';"
or
driver.ExecuteScript "document.body.style.zoom='60%';"
1.4m articles
1.4m replys
5 comments
57.0k users