setViewportSize method
Set the viewport size to be used by the browser for the test.
Syntax
let configval = config.setViewportSize(value);
Parameters
- value
- Type:RectangleSize|RectangleSizeObject
- An object that defines the width and height of the test browser viewport in pixels.
- RectangleSizeObject
- The type RectangleSizeObject is defined as: {width:number,height:number}
Return value
- Type: Configuration
-
The value returned is the object that called the method.
This allows you to use a fluent style to call the
setXXXX
methods of the Configuration class.