2

I found this for java :-

WebElement html = driver.findElement(By.tagName("html"));
html.sendKeys(Keys.chord(Keys.CONTROL, Keys.ADD));

But how to do this using Python? I want to zoom out one level after get requests.

Brian Tompsett - 汤莱恩
  • 5,438
  • 68
  • 55
  • 126
Shekhar Samanta
  • 717
  • 2
  • 11
  • 25

4 Answers4

9

You can do something similar where you specify the zoom levels as below:

For example, if my body has a <div id='values'>, I could zoom the div using

from selenium import webdriver

def main():
    browser = webdriver.Chrome()
    browser.set_window_size(1000, 1000)
    browser.get("http://yoursite.com")
    browser.execute_script("$('#values').css('zoom', 5);")

if __name__ == '__main__':
    main()

Or Simply try:

driver.execute_script("document.body.style.zoom='zoom %'")
Vaulstein
  • 17,935
  • 6
  • 43
  • 65
  • selenium.common.exceptions.WebDriverException: Message: $ is not a function This is the page - driver.get('http://finviz.com/quote.ashx?t=A&ty=c&ta=1&p=d&b=1') I can't figure out how to zoom out – Shekhar Samanta Aug 21 '15 at 09:05
  • Thanks Vaulstein, this works for me - driver.execute_script("document.body.style.zoom='90%'") After setting the zoom value to 90% , i want to go bit down using keys.DOWN 4 times then screenshot . How can i do that ? – Shekhar Samanta Aug 21 '15 at 09:21
  • 2
    You can use `driver.execute_script("window.scrollTo(0, X)")' where `X` is the vertical position you want to scroll. – Vaulstein Aug 21 '15 at 09:25
  • Thanks Vaulstein, your help really saved my Day. Below i added - driver.save_screenshot('D:\capture.png') – Shekhar Samanta Aug 21 '15 at 10:03
7

this does the job for Python with selenium (-v 3.141.0)

driver = webdriver.Chrome(executable_path='...')
driver.get("www.stackoverflow.com")
driver.execute_script("document.body.style.zoom='50%'")
iacomino
  • 71
  • 1
  • 1
5

I looked all over for a solution to zoom out using selenium too, the documentation mentions nothing. Luckily the driver for Firefox (geckodriver) have this on one of their Github issues

I've made a shorthand brief of how to zoom out (and in), that will hopefully make the most sense (or at least that did for me)

#I'm sure this will be interchangeable with the Chrome driver too
 driver = webdriver.Firefox()
#Set the focus to the browser rather than the web content
 driver.set_context("chrome")
#Create a var of the window
 win = driver.find_element_by_tag_name("window")
#Send the key combination to the window itself rather than the web content to zoom out
#(change the "-" to "+" if you want to zoom in)
 win.send_keys(Keys.CONTROL + "-")
#Set the focus back to content to re-engage with page elements
 driver.set_context("content")
dope
  • 131
  • 2
  • 4
2

This works for IE

from selenium import webdriver
from selenium.webdriver.common.keys import Keys

driver = webdriver.Ie(executable_path=path_to_driver, capabilities={'ignoreZoomSetting':True})
driver.get(url)
driver.find_element_by_tag_name('html').send_keys(Keys.CONTROL, '0')
brian.m
  • 21
  • 1