module Browsenator::Remote::Browserstack::ScreenSize
Public Instance Methods
screen_resolution(width, height)
click to toggle source
# File lib/browsenator/remote/browserstack/desktop/screen_size.rb, line 5 def screen_resolution(width, height) width ||= 1024 height ||= 768 "#{width}x#{height}" end