[Mobile] Toggle Airplane Mode
Note:
- This keyword has been disabled by Android OS since API level 24 (Android 7).
- To turn airplane mode on/off, you can open the Settings app or swipe down the Control Center, then click/tap the Airplane Mode button as a workaround.
- On iOS devices, Access Within Apps must be enabled. To enable the feature, refer to the following Apple document: Edit Control Center on your iPhone, iPad, and iPod touch.
Description
Simulate toggling airplane mode on mobile devices. Support iOS real devices and Android emulators.
Keyword name: Mobile.toggleAirplaneMode
Parameters
Param | Param Type | Required | Description |
---|---|---|---|
mode | String | Yes | ["yes", "on", "true"] to turn on airplane mode; otherwise, airplane mode is turn off. |
flowControl | FailureHandling | Optional | Specify failure handling schema to determine whether the execution should be allowed to continue or stop. |
Example
You want to turn on airplane mode.
import static com.kms.katalon.core.testcase.TestCaseFactory.findTestCase
import static com.kms.katalon.core.testdata.TestDataFactory.findTestData
import static com.kms.katalon.core.testobject.ObjectRepository.findTestObject
import internal.GlobalVariable as GlobalVariable
import com.kms.katalon.core.configuration.RunConfiguration as RunConfiguration
import com.kms.katalon.core.mobile.keyword.MobileBuiltInKeywords as Mobile
import com.kms.katalon.core.util.internal.PathUtil as PathUtil
'Start the application on the currently selected Android device'
Mobile.startApplication(GlobalVariable.G_AndroidApp, false)
'Turn on airplane mode'
Mobile.toggleAirplaneMode('yes')
'Close application on the currently selected Android device'
Mobile.closeApplication()