本文整理汇总了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()
示例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()
示例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()
示例4: testGetProperty_displayHeight
def testGetProperty_displayHeight(self):
device = MockDevice()
self.assertEqual(1184, device.getProperty('display.height'))
示例5: testGetProperty_displayWidth
def testGetProperty_displayWidth(self):
device = MockDevice()
self.assertEqual(768, device.getProperty('display.width'))