| # Copyright 2010 WebDriver committers |
| # Copyright 2010 Google Inc. |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| class Command(object): |
| """ |
| Defines constants for the standard WebDriver commands. |
| |
| While these constants have no meaning in and of themselves, they are |
| used to marshal commands through a service that implements WebDriver's |
| remote wire protocol: |
| |
| http://code.google.com/p/selenium/wiki/JsonWireProtocol |
| """ |
| |
| # Keep in sync with org.openqa.selenium.remote.DriverCommand |
| |
| NEW_SESSION = "newSession" |
| DELETE_SESSION = "deleteSession" |
| CLOSE = "close" |
| QUIT = "quit" |
| GET = "get" |
| GO_BACK = "goBack" |
| GO_FORWARD = "goForward" |
| REFRESH = "refresh" |
| ADD_COOKIE = "addCookie" |
| GET_COOKIE = "getCookie" |
| GET_ALL_COOKIES = "getCookies" |
| DELETE_COOKIE = "deleteCookie" |
| DELETE_ALL_COOKIES = "deleteAllCookies" |
| FIND_ELEMENT = "findElement" |
| FIND_ELEMENTS = "findElements" |
| FIND_CHILD_ELEMENT = "findChildElement" |
| FIND_CHILD_ELEMENTS = "findChildElements" |
| CLEAR_ELEMENT = "clearElement" |
| CLICK_ELEMENT = "clickElement" |
| HOVER_OVER_ELEMENT = "hoverOverElement" |
| SEND_KEYS_TO_ELEMENT = "sendKeysToElement" |
| SEND_KEYS_TO_ACTIVE_ELEMENT = "sendKeysToActiveElement" |
| SUBMIT_ELEMENT = "submitElement" |
| UPLOAD_FILE = "uploadFile" |
| TOGGLE_ELEMENT = "toggleElement" |
| GET_CURRENT_WINDOW_HANDLE = "getCurrentWindowHandle" |
| GET_WINDOW_HANDLES = "getWindowHandles" |
| GET_WINDOW_SIZE = "getWindowSize" |
| GET_WINDOW_POSITION = "getWindowPosition" |
| SET_WINDOW_SIZE = "setWindowSize" |
| SET_WINDOW_POSITION = "setWindowPosition" |
| SWITCH_TO_WINDOW = "switchToWindow" |
| SWITCH_TO_FRAME = "switchToFrame" |
| GET_ACTIVE_ELEMENT = "getActiveElement" |
| GET_CURRENT_URL = "getCurrentUrl" |
| GET_PAGE_SOURCE = "getPageSource" |
| GET_TITLE = "getTitle" |
| EXECUTE_SCRIPT = "executeScript" |
| GET_SPEED = "getSpeed" |
| SET_SPEED = "setSpeed" |
| SET_BROWSER_VISIBLE = "setBrowserVisible" |
| IS_BROWSER_VISIBLE = "isBrowserVisible" |
| GET_ELEMENT_TEXT = "getElementText" |
| GET_ELEMENT_VALUE = "getElementValue" |
| GET_ELEMENT_TAG_NAME = "getElementTagName" |
| SET_ELEMENT_SELECTED = "setElementSelected" |
| DRAG_ELEMENT = "dragElement" |
| IS_ELEMENT_SELECTED = "isElementSelected" |
| IS_ELEMENT_ENABLED = "isElementEnabled" |
| IS_ELEMENT_DISPLAYED = "isElementDisplayed" |
| GET_ELEMENT_LOCATION = "getElementLocation" |
| GET_ELEMENT_LOCATION_ONCE_SCROLLED_INTO_VIEW = "getElementLocationOnceScrolledIntoView" |
| GET_ELEMENT_SIZE = "getElementSize" |
| GET_ELEMENT_ATTRIBUTE = "getElementAttribute" |
| GET_ELEMENT_VALUE_OF_CSS_PROPERTY = "getElementValueOfCssProperty" |
| ELEMENT_EQUALS = "elementEquals" |
| SCREENSHOT = "screenshot" |
| IMPLICIT_WAIT = "implicitlyWait" |
| EXECUTE_ASYNC_SCRIPT = "executeAsyncScript" |
| SET_SCRIPT_TIMEOUT = "setScriptTimeout" |
| SET_TIMEOUTS = "setTimeouts" |
| MAXIMIZE_WINDOW = "windowMaximize" |
| |
| #Alerts |
| DISMISS_ALERT = "dismissAlert" |
| ACCEPT_ALERT = "acceptAlert" |
| SET_ALERT_VALUE = "setAlertValue" |
| GET_ALERT_TEXT = "getAlertText" |
| |
| # Advanced user interactions |
| CLICK = "mouseClick"; |
| DOUBLE_CLICK = "mouseDoubleClick"; |
| MOUSE_DOWN = "mouseButtonDown"; |
| MOUSE_UP = "mouseButtonUp"; |
| MOVE_TO = "mouseMoveTo"; |
| |
| # Screen Orientation |
| SET_SCREEN_ORIENTATION = "setScreenOrientation" |
| GET_SCREEN_ORIENTATION = "getScreenOrientation" |
| |
| # Touch Actions |
| SINGLE_TAP = "touchSingleTap"; |
| TOUCH_DOWN = "touchDown"; |
| TOUCH_UP = "touchUp"; |
| TOUCH_MOVE = "touchMove"; |
| TOUCH_SCROLL = "touchScroll"; |
| DOUBLE_TAP = "touchDoubleTap"; |
| LONG_PRESS = "touchLongPress"; |
| FLICK = "touchFlick"; |
| |
| #HTML 5 |
| EXECUTE_SQL = "executeSql" |
| |
| GET_LOCATION = "getLocation" |
| SET_LOCATION = "setLocation" |
| |
| GET_APP_CACHE = "getAppCache" |
| GET_APP_CACHE_STATUS = "getAppCacheStatus" |
| CLEAR_APP_CACHE = "clearAppCache" |
| |
| IS_BROWSER_ONLINE = "isBrowserOnline" |
| SET_BROWSER_ONLINE = "setBrowserOnline" |
| |
| GET_LOCAL_STORAGE_ITEM = "getLocalStorageItem" |
| REMOVE_LOCAL_STORAGE_ITEM = "removeLocalStorageItem" |
| GET_LOCAL_STORAGE_KEYS = "getLocalStorageKeys" |
| SET_LOCAL_STORAGE_ITEM = "setLocalStorageItem" |
| CLEAR_LOCAL_STORAGE = "clearLocalStorage" |
| GET_LOCAL_STORAGE_SIZE = "getLocalStorageSize" |
| |
| GET_SESSION_STORAGE_ITEM= "getSessionStorageItem" |
| REMOVE_SESSION_STORAGE_ITEM = "removeSessionStorageItem" |
| GET_SESSION_STORAGE_KEYS = "getSessionStorageKeys" |
| SET_SESSION_STORAGE_ITEM = "setSessionStorageItem" |
| CLEAR_SESSION_STORAGE = "clearSessionStorage" |
| GET_SESSION_STORAGE_SIZE = "getSessionStorageSize" |