Package io.appium.java_client
Interface ExecutesMethod
-
- All Known Subinterfaces:
AuthenticatesByFinger
,CanRecordScreen
,CanReplaceElementValue
,ComparesImages
,ExecuteCDPCommand
,ExecutesDriverScript
,HasAndroidClipboard
,HasAndroidDeviceDetails
,HasAppStrings
,HasBattery<T>
,HasBrowserCheck
,HasClipboard
,HasDeviceTime
,HasIOSClipboard
,HasNetworkConnection
,HasOnScreenKeyboard
,HasSettings
,HasSupportedPerformanceDataType
,HidesKeyboard
,HidesKeyboardWithKeyName
,InteractsWithApps
,ListensToLogcatMessages
,ListensToSyslogMessages
,LocksDevice
,LogsEvents
,PerformsTouchActions
,PerformsTouchID
,PressesKey
,PullsFiles
,PushesFiles
,ShakesDevice
,StartsActivity
,SupportsContextSwitching
,SupportsExtendedGeolocationCommands
,SupportsLegacyAppManagement
,SupportsNetworkStateManagement
,SupportsRotation
,SupportsSpecialEmulatorCommands
- All Known Implementing Classes:
AndroidDriver
,AppiumDriver
,GeckoDriver
,IOSDriver
,Mac2Driver
,SafariDriver
,WindowsDriver
public interface ExecutesMethod
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.openqa.selenium.remote.Response
execute(java.lang.String driverCommand)
Executes the given command and returns a response.org.openqa.selenium.remote.Response
execute(java.lang.String driverCommand, java.util.Map<java.lang.String,?> parameters)
Executes the given command and returns a response.
-
-
-
Method Detail
-
execute
org.openqa.selenium.remote.Response execute(java.lang.String driverCommand, java.util.Map<java.lang.String,?> parameters)
Executes the given command and returns a response.- Parameters:
driverCommand
- a command to executeparameters
- map of command parameters- Returns:
- a result response
-
execute
org.openqa.selenium.remote.Response execute(java.lang.String driverCommand)
Executes the given command and returns a response.- Parameters:
driverCommand
- a command to execute- Returns:
- a result response
-
-