2

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'")
saransh
  • 180
  • 1
  • 12

1 Answers1

1

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%';"
undetected Selenium
  • 151,581
  • 34
  • 225
  • 281