Zooming out a website

Hi,

Just tried this and this work at least on the wiki page :

*** Test Cases ***
Zoom Page Test
    Open Browser    https://wikipedia.org    chrome
    Maximize Browser Window
    Zoom Page    0.5
    Zoom Page    1.0
    Zoom Page    1.5
    Close Browser

*** Keywords ***

Zoom Page
    [Arguments]    ${scale}    
    Execute Javascript    document.body.style.transform = "scale(${scale})";
    Execute Javascript   document.body.style.transformOrigin = "0 0";

It seems document.body.style.zoom does not work all the time.

Regards.
Charlie

3 Likes