AppiumWebDriver class

Constructors

AppiumWebDriver(Uri uri, String id, Map<String, dynamic> capabilities, AsyncRequestClient _client, WebDriverSpec spec)

Properties

activeElement Future<AppiumWebElement>
The currently focused element, or the body element if no element has focus.
no setter
app → AppManagement
no setter
appState → AppState
no setter
capabilities Map<String, dynamic>
final
cdp → ChromeDevTools
no setter
contexts Contexts
no setter
cookies Cookies
no setter
currentUrl Future<String>
The current url.
no setter
device Device
no setter
driver AppiumWebDriver
no setter
hashCode int
The hash code for this object.
no setterinherited
id String
final
ime IME
no setter
keyboard Keyboard
no setter
logs Logs
logs.get(logType) will give list of logs captured in browser.
no setter
mouse Mouse
no setter
notifyListeners bool
If true, WebDriver actions are recorded as WebDriverCommandEvents.
getter/setter pair
pageSource Future<String>
An artist's rendition of the current page's source.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
session → Session
no setter
sessions Sessions
no setter
settings Settings
no setter
spec WebDriverSpec
final
status Status
no setter
stepper ↔ Stepper?
getter/setter pair
switchTo TargetLocator
no setter
timeouts Timeouts
no setter
title Future<String>
The title of the current page.
no setter
uri Uri
final
window Future<Window>
Handle for the active tab/window.
no setter
windows Stream<Window>
Handles for all of the currently displayed tabs/windows.
no setter

Methods

addEventListener(AsyncWebDriverListener listener) → void
Preferred method for registering listeners. Listeners are expected to return a Future. Use new Future.value() for synchronous listeners.
back() Future<void>
Navigates backwards in the browser history, if possible.
captureScreenshot() Stream<int>
Take a screenshot of the current page as PNG as stream of uint8.
captureScreenshotAsBase64() Future<String>
Take a screenshot of the current page as PNG and return it as base64-encoded string.
captureScreenshotAsList() Future<List<int>>
Take a screenshot of the current page as PNG as list of uint8.
close() Future<void>
Closes the current window.
deleteRequest(String command) Future
execute(String script, List args) Future
Inject a snippet of JavaScript into the page for execution in the context of the currently selected frame. The executed script is assumed to be synchronous and the result of evaluating the script is returned.
executeAsync(String script, List args) Future
Inject a snippet of JavaScript into the page for execution in the context of the currently selected frame. The executed script is assumed to be asynchronous and must signal that is done by invoking the provided callback, which is always provided as the final argument to the function. The value to this callback will be returned to the client.
executeDriver(String script, {String? type, Duration? timeout}) Future
findElement(AppiumBy by) Future<AppiumWebElement>
Search for an element within the entire current page. Throws NoSuchElementException if a matching element is not found.
findElements(AppiumBy by) Stream<AppiumWebElement>
Search for multiple elements within the entire current page.
forward() Future<void>
Navigates forwards in the browser history, if possible.
get(dynamic url) Future<void>
Navigates to the specified url
getElement(String elementId, [dynamic context, dynamic locator, dynamic index]) AppiumWebElement
getRequest(String command) Future
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
postRequest(String command, [dynamic params]) Future
quit({bool closeSession = true}) Future<void>
Quits the browser.
refresh() Future<void>
Refreshes the current page.
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited