I am using MonkeyRunner to automate some UI test cases.
I need to collect logs from the device using tool like QXDM.
I see that win32com python module can be used to launch QXDM and collecting logs.
But when i use from win32com.client import Dispatch in python script which is passed as argument to MonkeyRunner, MonkeyRunner throws:
"Import Error: No Module named win32com".
I have installed win32com on my machine, and when i use win32com in a python script which ran using "python test.py" its working fine. Do we need to install win32com python module on Android device also? or what need to be done to make this work?