如何使用AndroidViewClient启动设备或模拟器?

时间:2015-11-30 14:03:02

标签: android python androidviewclient

我正在为我的一个项目使用AndroidViewClient库。我遇到的问题是我的脚本在模拟器上运行良好,但在真实设备上我必须添加一些代码行。但我没有找到如何检查我的设备真实或模拟器。我需要这样的smth:

if device.isSimulator():
      # todo smth 
else  # todo antoher

另外我知道模拟器的名称以“emulator-1234”开头,但没有弄清楚如何获取连接设备的名称

2 个答案:

答案 0 :(得分:1)

我假设您使用culebra生成了脚本的基础,如果不是真的,可能您的代码也非常类似于此:

...
device, serialno = ViewClient.connectToDeviceOrExit(**kwargs1)

然后你有serialno可以帮助你确定你是在某个特定的设备或模拟器上。

所有这些选项都会打印serialno

print vc.serialno
print device.serialno
print serialno

另一方面,如果您使用culebra生成单元测试(-U, --unit-test-class generates unit test class and script),则可以使用自动生成的preconditions()方法检查您是否正在运行设备或模拟器

...
class CulebraTests(CulebraTestCase):

    @classmethod
    def setUpClass(cls):
        cls.kwargs1 = {'ignoreversioncheck': False, 'verbose': False, 'ignoresecuredevice': False}
        cls.kwargs2 = {'forceviewserveruse': False, 'useuiautomatorhelper': False, 'ignoreuiautomatorkilled': True, 'autodump': False, 'startviewserver': True, 'compresseddump': True}
        cls.options = {'start-activity': None, 'concertina': False, 'device-art': None, 'use-jar': False, 'multi-device': False, 'unit-test-class': True, 'save-screenshot': None, 'use-dictionary': False, 'glare': False, 'dictionary-keys-from': 'id', 'scale': 1, 'find-views-with-content-description': True, 'window': -1, 'orientation-locked': None, 'save-view-screenshots': None, 'find-views-by-id': True, 'log-actions': False, 'use-regexps': False, 'null-back-end': False, 'auto-regexps': None, 'do-not-verify-screen-dump': True, 'verbose-comments': False, 'gui': False, 'find-views-with-text': True, 'prepend-to-sys-path': True, 'drop-shadow': False, 'output': '/Users/diego/tmp/serialno-test.py', 'unit-test-method': None, 'interactive': False}
        cls.sleep = 5

    def setUp(self):
        super(CulebraTests, self).setUp()

    def tearDown(self):
        super(CulebraTests, self).tearDown()

    def preconditions(self):
        if not super(CulebraTests, self).preconditions():
            return False
        if not re.match('emulator-.*', self.serialno):
            self.fail("This tests only run on emulator");
        return True

答案 1 :(得分:0)

试试这个

SensorManager manager = (SensorManager) getSystemService(SENSOR_SERVICE);
    if (manager.getSensorList(Sensor.TYPE_ALL).isEmpty()) {
        // running on an emulator
    } else {
        // running on a device
    }