set_viewport_size method
Set the default viewport size property. Eyes will use this if a subsequent call to open is done without a viewport size. This also changes the browser viewport size to the given size immediately, instead of when open is called.
This property will be displayed by the Test manager along with the other test information. The value is also taken into consideration when finding a matching baseline.
Syntax
value = Eyes.set_viewport_size(driver, size)
Parameters
- driver
- Type:AnyWebDriver
- The driver returned from the call to open.
- AnyWebDriver
- The type AnyWebDriver is defined as: Union[EyesWebDriver,WebDriver] This object can be used in the same way as the Selenium driver object.
- size
- Type:ViewPort
The size of the viewport
The size of the viewport passed as an object.
The size of the viewport passed as an object {'width':, 'height':}
- ViewPort
- The type ViewPort is defined as: Union[Dict[Text,int],RectangleSize]
Return value
- Type: None
Remarks
- Call this method before the call to Eyes.open. Then, when calling the open method, don't pass the viewportSize parameter. If the viewport size is set to be smaller than the actual content, then scrolling should typically be enabled by calling set_force_full_page_screenshot method so that the full page image is tested.