コード例 #1
0
def tc_662249():
	if not open_app(app_store_id):
		return 0

	time.sleep(30)
	log.info('looking for crash after opening apps')
	os_util.check_crashes('AppStore')
	time.sleep(10)

	if not close_app(app_store_id):
		return 0

	return 1
コード例 #2
0
def tc_662251():
	if not open_app(app_store_id):
		return 0

	time.sleep(5)
	log.info('Clicking Featured icon in the app store')
	click_appstore_icon(identifier='top-charts')
	time.sleep(10)

	if not close_app(app_store_id):
		return 0

	return 0
コード例 #3
0
def tc_662254():
	if not open_app(app_store_id):
		return 0

	time.sleep(5)
	log.info('search in app store')
	search_in_appstore(search_value='Angry Birds')
	time.sleep(30)

	if not close_app(app_store_id):
		return 0

	return 1