This is python code to check if a record works well:
def setUp(self):"Setup for the test" desired_caps = {} desired_caps['browserName']='' desired_caps['platformName'] = 'Android' desired_caps['platformVersion'] = '4.4.2' desired_caps['deviceName'] = 'd65d04425101de'
It works fine so far.
Now I need to check the physical device whether the record is present or not.
I need to go to the File Manager device to check for the presence of recorded sound (recording .mp3)
How can I write a test case for this?
source share