Class: Selenium::WebDriver::IE::Bridge Private
- Inherits:
-
Remote::Bridge
- Object
- Remote::Bridge
- Selenium::WebDriver::IE::Bridge
- Defined in:
- rb/lib/selenium/webdriver/ie/bridge.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Constant Summary
- HOST =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
Platform.localhost
- DEFAULT_PORT =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
5555
- DEFAULT_TIMEOUT =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
30
Constants inherited from Remote::Bridge
Instance Attribute Summary
Attributes inherited from Remote::Bridge
#capabilities, #context, #file_detector, #http
Instance Method Summary (collapse)
- - (Object) browser private
- - (Object) driver_extensions private
-
- (Bridge) initialize(opts = {})
constructor
private
A new instance of Bridge.
- - (Object) quit private
Methods inherited from Remote::Bridge
#acceptAlert, #addCookie, #clearElement, #clearLocalStorage, #clearSessionStorage, #click, #clickElement, #close, command, #contextClick, #create_session, #deleteAllCookies, #deleteCookie, #dismissAlert, #doubleClick, #dragElement, #elementEquals, #executeAsyncScript, #executeScript, #find_element_by, #find_elements_by, #get, #getActiveElement, #getAlert, #getAlertText, #getAllCookies, #getAvailableLogTypes, #getCapabilities, #getCurrentUrl, #getCurrentWindowHandle, #getElementAttribute, #getElementLocation, #getElementLocationOnceScrolledIntoView, #getElementSize, #getElementTagName, #getElementText, #getElementValue, #getElementValueOfCssProperty, #getLocalStorageItem, #getLocalStorageKeys, #getLocalStorageSize, #getLocation, #getLog, #getPageSource, #getScreenOrientation, #getScreenshot, #getSessionStorageItem, #getSessionStorageKeys, #getSessionStorageSize, #getTitle, #getVisible, #getWindowHandles, #getWindowPosition, #getWindowSize, #goBack, #goForward, #isBrowserOnline, #isElementDisplayed, #isElementEnabled, #isElementSelected, #maximizeWindow, #mouseDown, #mouseMoveTo, #mouseUp, #refresh, #removeLocalStorageItem, #removeSessionStorageItem, #sendKeysToActiveElement, #sendKeysToElement, #session_id, #setAlertValue, #setBrowserOnline, #setImplicitWaitTimeout, #setLocalStorageItem, #setLocation, #setScreenOrientation, #setScriptTimeout, #setSessionStorageItem, #setTimeout, #setVisible, #setWindowPosition, #setWindowSize, #status, #submitElement, #switchToDefaultContent, #switchToFrame, #switchToWindow, #touchDoubleTap, #touchDown, #touchElementFlick, #touchFlick, #touchLongPress, #touchMove, #touchScroll, #touchSingleTap, #touchUp, #upload
Methods included from BridgeHelper
#element_id_from, #parse_cookie_string, #unwrap_script_result
Constructor Details
- (Bridge) initialize(opts = {})
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Bridge
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'rb/lib/selenium/webdriver/ie/bridge.rb', line 15 def initialize(opts = {}) caps = opts.delete(:desired_capabilities) { Remote::Capabilities.internet_explorer } timeout = opts.delete(:timeout) { DEFAULT_TIMEOUT } port = opts.delete(:port) { PortProber.above(DEFAULT_PORT) } http_client = opts.delete(:http_client) ignore_mode = opts.delete(:introduce_flakiness_by_ignoring_security_domains) native_events = opts.delete(:native_events) != false @server = Server.get @server.log_level = opts.delete(:log_level) if opts[:log_level] @server.log_file = opts.delete(:log_file) if opts[:log_file] unless opts.empty? raise ArgumentError, "unknown option#{'s' if opts.size != 1}: #{opts.inspect}" end @port = @server.start Integer(port), timeout if ignore_mode caps['ignoreProtectedModeSettings'] = true end caps['nativeEvents'] = native_events remote_opts = { :url => @server.uri, :desired_capabilities => caps } remote_opts[:http_client] = http_client if http_client super(remote_opts) end |
Instance Method Details
- (Object) browser
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
50 51 52 |
# File 'rb/lib/selenium/webdriver/ie/bridge.rb', line 50 def browser :internet_explorer end |
- (Object) driver_extensions
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
54 55 56 |
# File 'rb/lib/selenium/webdriver/ie/bridge.rb', line 54 def driver_extensions [DriverExtensions::TakesScreenshot, DriverExtensions::HasInputDevices] end |
- (Object) quit
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
58 59 60 61 62 63 |
# File 'rb/lib/selenium/webdriver/ie/bridge.rb', line 58 def quit super nil ensure @server.stop end |