I want to perform these actions on my android emulator using katalon studio
Incoming calls , outgoing calls, Call Accept, Call decline, send SMS on Android Emulator
Please help on this how we can perform these action in Katalon studio ?
I want to perform these actions on my android emulator using katalon studio
Incoming calls , outgoing calls, Call Accept, Call decline, send SMS on Android Emulator
Please help on this how we can perform these action in Katalon studio ?
Hi @shrikalase,
You should be able to make any of the Appium calls in your Katalon tests like so:
import io.appium.java_client.AppiumDriver
import io.appium.java_client.android.GsmCallActions
AppiumDriver<?> driver = MobileDriverFactory.getDriver()
driver.makeGsmCall("5551234567", GsmCallActions.CALL);
driver.sendSMS("555-123-4567", "Hey lol");
You might see the function names makeGsmCall
and sendSMS
underlined in Katalon Studio, but you can ignore that.
Hope this helps,
Chris