当前位置: 首页>>代码示例>>Python>>正文


Python mocks.MockDevice类代码示例

本文整理汇总了Python中mocks.MockDevice的典型用法代码示例。如果您正苦于以下问题:Python MockDevice类的具体用法?Python MockDevice怎么用?Python MockDevice使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了MockDevice类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: testUiViewServerDump_windowIntM1

 def testUiViewServerDump_windowIntM1(self):
     try:
         device = MockDevice(version=15, startviewserver=True)
         vc = ViewClient(device, device.serialno, adb=TRUE, autodump=False)
         vc.dump(window=-1)
         vc.findViewByIdOrRaise('id/home')
     finally:
         device.shutdownMockViewServer()
开发者ID:jablaze,项目名称:AndroidViewClient,代码行数:8,代码来源:viewclient.py

示例2: testFindViewsContainingPoint_filterApi15

 def testFindViewsContainingPoint_filterApi15(self):
     try:
         device = MockDevice(version=15, startviewserver=True)
         vc = ViewClient(device, device.serialno, adb=TRUE)
         list = vc.findViewsContainingPoint((200, 200), filter=View.isClickable)
         self.assertNotEquals(None, list)
         self.assertNotEquals(0, len(list))
     finally:
         device.shutdownMockViewServer()
开发者ID:jablaze,项目名称:AndroidViewClient,代码行数:9,代码来源:viewclient.py

示例3: testUiViewServerDump_windowIntStr

 def testUiViewServerDump_windowIntStr(self):
     device = None
     try:
         device = MockDevice(version=15, startviewserver=True)
         vc = ViewClient(device, device.serialno, adb=TRUE, autodump=False)
         vc.dump(window='0xb52f7c88')
         vc.findViewByIdOrRaise('id/status_bar')
     finally:
         if device:
             device.shutdownMockViewServer()
开发者ID:DavidTao99,项目名称:AndroidViewClient,代码行数:10,代码来源:viewclienttests.py

示例4: testGetProperty_displayHeight

 def testGetProperty_displayHeight(self):
     device = MockDevice()
     self.assertEqual(1184, device.getProperty('display.height'))
开发者ID:DavidTao99,项目名称:AndroidViewClient,代码行数:3,代码来源:viewclienttests.py

示例5: testGetProperty_displayWidth

 def testGetProperty_displayWidth(self):
     device = MockDevice()
     self.assertEqual(768, device.getProperty('display.width'))
开发者ID:DavidTao99,项目名称:AndroidViewClient,代码行数:3,代码来源:viewclienttests.py


注:本文中的mocks.MockDevice类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。