Change screen orientation
You can change the screen orientation of an Android or iOS device to set your application in portrait or landscape mode during the execution of the test. Use the capability deviceOrientation
to change the screen orientation.
Capability | Description | Values |
---|---|---|
deviceOrientation |
Set the screen orientation of mobile device | portrait, landscape Default: portrait |
Example :
desired_caps = {
'deviceOrientation': 'landscape'
}
DesiredCapabilities desiredCapabilities = new DesiredCapabilities();
desiredCapabilities.setCapability("deviceOrientation", "landscape");
desired_cap = {
'deviceOrientation': 'landscape'
}
var capabilities = {
'deviceOrientation': 'landscape',
}
DesiredCapabilities capability = new DesiredCapabilities();
capability.SetCapability("deviceOrientation", "landscape");
$capabilities = new DesiredCapabilities();
$capabilities->setCapability("deviceOrientation", "landscape");
We're sorry to hear that. Please share your feedback so we can do better
Contact our Support team for immediate help while we work on improving our docs.
We're continuously improving our docs. We'd love to know what you liked
We're sorry to hear that. Please share your feedback so we can do better
Contact our Support team for immediate help while we work on improving our docs.
We're continuously improving our docs. We'd love to know what you liked
Thank you for your valuable feedback!