本文整理汇总了Python中appurify.client.AppurifyClient.uploadApp方法的典型用法代码示例。如果您正苦于以下问题:Python AppurifyClient.uploadApp方法的具体用法?Python AppurifyClient.uploadApp怎么用?Python AppurifyClient.uploadApp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类appurify.client.AppurifyClient
的用法示例。
在下文中一共展示了AppurifyClient.uploadApp方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testUploadAppSource
# 需要导入模块: from appurify.client import AppurifyClient [as 别名]
# 或者: from appurify.client.AppurifyClient import uploadApp [as 别名]
def testUploadAppSource(self):
client = AppurifyClient(access_token="authenticated", app_src=__file__, app_src_type='raw', test_type='calabash', name="test_name")
app_id = client.uploadApp()
self.assertEqual(app_id, "test_app_id", "Should properly fetch web robot for app id")
示例2: testUploadAppNoSourceError
# 需要导入模块: from appurify.client import AppurifyClient [as 别名]
# 或者: from appurify.client.AppurifyClient import uploadApp [as 别名]
def testUploadAppNoSourceError(self):
client = AppurifyClient(access_token="authenticated", app_src_type='raw', test_type='calabash')
with self.assertRaises(AppurifyClientError):
client.uploadApp()
示例3: testUploadAppNoSource
# 需要导入模块: from appurify.client import AppurifyClient [as 别名]
# 或者: from appurify.client.AppurifyClient import uploadApp [as 别名]
def testUploadAppNoSource(self):
client = AppurifyClient(access_token="authenticated", test_type='ios_webrobot')
app_id = client.uploadApp()
self.assertEqual(app_id, "test_app_id", "Should properly fetch web robot for app id")