本文整理汇总了Python中marketplacetests.marketplace.app.Marketplace.launch方法的典型用法代码示例。如果您正苦于以下问题:Python Marketplace.launch方法的具体用法?Python Marketplace.launch怎么用?Python Marketplace.launch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类marketplacetests.marketplace.app.Marketplace
的用法示例。
在下文中一共展示了Marketplace.launch方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_search_and_install_app
# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import launch [as 别名]
def test_search_and_install_app(self):
marketplace = Marketplace(self.marionette, self.MARKETPLACE_DEV_NAME)
marketplace.launch()
self.app_name = marketplace.popular_apps[0].name
app_author = marketplace.popular_apps[0].author
results = marketplace.search(self.app_name)
self.assertGreater(len(results.search_results), 0, 'No results found.')
first_result = results.search_results[0]
self.assertEquals(first_result.name, self.app_name, 'First app has the wrong name.')
self.assertEquals(first_result.author, app_author, 'First app has the wrong author.')
# Find and click the install button to the install the web app
self.assertEquals(first_result.install_button_text, 'Free', 'Incorrect button label.')
first_result.tap_install_button()
self.confirm_installation()
self.APP_INSTALLED = True
# Press Home button
self.marionette.execute_script("window.wrappedJSObject.dispatchEvent(new Event('home'));")
# Check that the icon of the app is on the homescreen
homescreen = Homescreen(self.marionette)
self.apps.switch_to_displayed_app()
self.assertTrue(homescreen.is_app_installed(self.app_name))
开发者ID:chirarobert,项目名称:marketplace-tests-gaia,代码行数:32,代码来源:test_marketplace_search_and_install_app.py
示例2: TestMarketplaceFeedback
# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import launch [as 别名]
class TestMarketplaceFeedback(GaiaTestCase):
MARKETPLACE_DEV_NAME = 'Marketplace Dev'
feedback_submitted_message = u'Feedback submitted. Thanks!'
test_comment = 'This is a test comment.'
def setUp(self):
GaiaTestCase.setUp(self)
self.connect_to_network()
self.install_marketplace()
def test_marketplace_feedback_anonymous(self):
# launch marketplace dev and go to marketplace
self.marketplace = Marketplace(self.marionette, self.MARKETPLACE_DEV_NAME)
self.marketplace.launch()
# wait for settings button to come out
self.marketplace.wait_for_setting_displayed()
settings = self.marketplace.tap_settings()
self.marketplace.select_setting_feedback()
# enter and submit your feedback
self.marketplace.enter_feedback(self.test_comment)
self.marketplace.submit_feedback()
# catch the notification
self.marketplace.wait_for_notification_message_displayed()
message_content = self.marketplace.notification_message
# verify if the notification is right
self.assertEqual(message_content, self.feedback_submitted_message)
示例3: test_search_and_install_app
# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import launch [as 别名]
def test_search_and_install_app(self):
marketplace = Marketplace(self.marionette, self.MARKETPLACE_DEV_NAME)
marketplace.launch()
self.app_name = marketplace.popular_apps[0].name
app_author = marketplace.popular_apps[0].author
results = marketplace.search(self.app_name)
self.assertGreater(len(results.search_results), 0, 'No results found.')
first_result = results.search_results[0]
self.assertEquals(first_result.name, self.app_name, 'First app has the wrong name.')
self.assertEquals(first_result.author, app_author, 'First app has the wrong author.')
# Find and click the install button to the install the web app
self.assertEquals(first_result.install_button_text, 'Free', 'Incorrect button label.')
first_result.tap_install_button()
self.confirm_installation()
marketplace.wait_for_notification_message_not_displayed()
self.APP_INSTALLED = True
# Check that the icon of the app is on the homescreen
homescreen = Homescreen(self.marionette)
homescreen.switch_to_homescreen_frame()
self.assertTrue(homescreen.is_app_installed(self.app_name))
示例4: test_add_review
# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import launch [as 别名]
def test_add_review(self):
marketplace = Marketplace(self.marionette, 'Marketplace dev')
marketplace.launch()
# Sign in
settings = marketplace.tap_settings()
persona = settings.tap_sign_in()
persona.login(self.user.email, self.user.password)
self.marionette.switch_to_frame()
marketplace.launch()
settings.wait_for_sign_out_button()
# Search and select app
results = marketplace.search('SoundCloud')
self.assertGreater(len(results.search_results), 0, 'No results found.')
details_page = results.search_results[0].tap_app()
# Setting your default values for review
current_time = str(time.time()).split('.')[0]
rating = random.randint(1, 5)
body = 'This is a test %s' % current_time
# Adding the review
review_box = details_page.tap_write_review()
review_box.write_a_review(rating, body)
marketplace.wait_for_notification_message_displayed()
# Check if review was added correctly
self.assertEqual(marketplace.notification_message, "Your review was posted")
self.assertEqual(details_page.first_review_rating, rating)
self.assertEqual(details_page.first_review_body, body)
示例5: test_search_paid_app
# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import launch [as 别名]
def test_search_paid_app(self):
APP_NAME = 'Test Zippy With Me'
if self.apps.is_app_installed(APP_NAME):
self.apps.uninstall(APP_NAME)
marketplace = Marketplace(self.marionette, self.MARKETPLACE_DEV_NAME)
marketplace.launch()
marketplace.set_region('United States')
search_results = marketplace.search(APP_NAME).search_results
self.assertGreater(len(search_results), 0, 'No results found.')
for result in search_results:
if result.name == APP_NAME:
saved_price = result.install_button_text
details_page = result.tap_app()
self.assertEqual(saved_price, details_page.install_button_text)
return True
# app not found
self.fail('The app: %s was not found.' % APP_NAME)
开发者ID:bobsilverberg,项目名称:marketplace-tests-gaia,代码行数:27,代码来源:test_marketplace_search_for_paid_app.py
示例6: test_marketplace_change_region_anonymous
# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import launch [as 别名]
def test_marketplace_change_region_anonymous(self):
marketplace = Marketplace(self.marionette, 'Marketplace Dev')
marketplace.launch()
settings = marketplace.tap_settings()
# change region
settings.select_region(self._REGION)
# save changes
settings.tap_save_changes()
# wait for the changes to be saved
marketplace.wait_for_notification_message_displayed()
self.assertEqual(marketplace.notification_message, 'Settings saved')
# go to home
marketplace.tap_back()
# go back to settings
settings = marketplace.tap_settings()
# check if the region is same as changed before
self.assertEqual(settings.region, self._REGION)
示例7: test_purchase_app
# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import launch [as 别名]
def test_purchase_app(self):
APP_NAME = 'Test Zippy With Me'
PIN = '1234'
username = self.testvars['marketplace']['username']
password = self.testvars['marketplace']['password']
if self.apps.is_app_installed(APP_NAME):
self.apps.uninstall(APP_NAME)
marketplace = Marketplace(self.marionette, self.MARKETPLACE_DEV_NAME)
marketplace.launch()
marketplace.login(username, password)
marketplace.set_region('United States')
details_page = marketplace.navigate_to_app(APP_NAME)
payment = details_page.tap_purchase_button()
payment.create_pin(PIN)
payment.wait_for_buy_app_section_displayed()
self.assertIn(APP_NAME, payment.app_name)
payment.tap_buy_button()
# Confirm the installation and wait for the app icon to be present
confirm_install = ConfirmInstall(self.marionette)
confirm_install.tap_confirm()
self.assertEqual('%s installed' % APP_NAME, marketplace.install_notification_message)
marketplace.switch_to_marketplace_frame()
self.assertEqual('Launch', details_page.install_button_text)
示例8: test_marketplace_without_connectivity
# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import launch [as 别名]
def test_marketplace_without_connectivity(self):
marketplace = Marketplace(self.marionette, self.MARKETPLACE_DEV_NAME)
marketplace.launch()
self.apps.switch_to_displayed_app()
self.assertEqual(marketplace.error_title_text, self.expected_error_title)
self.assertEqual(marketplace.error_message_text, self.expected_error_message)
示例9: test_marketplace_purchase_app_wifi
# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import launch [as 别名]
def test_marketplace_purchase_app_wifi(self):
marketplace = Marketplace(self.marionette, 'Marketplace Dev')
marketplace.launch()
# Tap settings and sign in in Marketplace
settings = marketplace.tap_settings()
persona = settings.tap_sign_in()
# login with PersonaTestUser account
persona.login(self.user.email, self.user.password)
# switch back to Marketplace
self.marionette.switch_to_frame()
marketplace.launch()
# wait for the page to refresh and the sign out button to be visible
settings.wait_for_sign_out_button()
# Well I dunno, it just needs this
time.sleep(3)
settings.select_region("Spain")
time.sleep(3)
settings.tap_save_changes()
# search for a paid app and tap on the price
search = marketplace.search(self._APP_NAME)
bango = search.search_results[0].tap_purchase_button()
# pay app
bango.create_pin('1234')
# verify phone number
bango.verify_phone_number(mobile_phone_number=self.testvars['carrier']['phone_number'],
country=self.testvars['carrier']['country'],
network=self.testvars['carrier']['network'])
# but the app
bango.wait_for_buy_app_section_displayed()
bango.tap_buy_button()
# At gaia System level, complete the installation prompt
self._confirm_installation()
# Switch into homescreen frame
homescreen_frame = self.marionette.find_element(*self._homescreen_iframe_locator)
self.marionette.switch_to_frame(homescreen_frame)
# Not overly concerned about it being visible, only present
self.assertTrue(self.is_element_present(*self._app_icon_locator))
示例10: test_marketplace_purchase_app_on_dev_with_mocked_bango
# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import launch [as 别名]
def test_marketplace_purchase_app_on_dev_with_mocked_bango(self):
marketplace = Marketplace(self.marionette, 'Marketplace Dev')
marketplace.launch()
# Tap settings and sign in in Marketplace
settings = marketplace.tap_settings()
persona = settings.tap_sign_in()
# login with PersonaTestUser account
persona.login(self.user.email, self.user.password)
# switch back to Marketplace
self.marionette.switch_to_frame()
marketplace.launch()
# wait for the page to refresh and the sign out button to be visible
settings.wait_for_sign_out_button()
# Well I dunno, it just needs this
time.sleep(3)
settings.select_region("Spain")
time.sleep(3)
settings.tap_save_changes()
marketplace.wait_for_notification_message_not_displayed()
# search for a paid app and tap on the price
search = marketplace.search('Bag of Dice')
bango = search.search_results[0].tap_purchase_button()
# pay app
bango.create_pin('1234')
# make fake payment
bango.make_fake_payment()
self.marionette.switch_to_frame()
# At gaia System level, complete the installation prompt
self._confirm_installation()
# Switch into homescreen frame
homescreen_frame = self.marionette.find_element(*self._homescreen_iframe_locator)
self.marionette.switch_to_frame(homescreen_frame)
# Not overly concerned about it being visible, only present
self.assertTrue(self.is_element_present(*self._app_icon_locator))
开发者ID:bebef1987,项目名称:marketplace-tests-gaia,代码行数:51,代码来源:test_marketplace_purchase_app_on_dev_with_mocked_bango.py
示例11: test_marketplace_purchase_app_credit_card
# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import launch [as 别名]
def test_marketplace_purchase_app_credit_card(self):
marketplace = Marketplace(self.marionette, 'Marketplace Dev')
marketplace.launch()
# Tap settings and sign in in Marketplace
settings = marketplace.tap_settings()
persona = settings.tap_sign_in()
# login with PersonaTestUser account
persona.login(self.user.email, self.user.password)
# switch back to Marketplace
self.marionette.switch_to_frame()
marketplace.launch()
# wait for the page to refresh and the sign out button to be visible
settings.wait_for_sign_out_button()
# Well I dunno, it just needs this
time.sleep(3)
settings.select_region("Spain")
time.sleep(3)
settings.tap_save_changes()
# search for a paid app and tap on the price
search = marketplace.search(self._APP_NAME)
bango = search.search_results[0].tap_purchase_button()
# pay app
bango.create_pin('1234')
# enter credit card details
bango.pay_using_credit_card('5149934112455150', '0718', '123')
self.marionette.switch_to_frame()
# At gaia System level, complete the installation prompt
self._confirm_installation()
# Switch into homescreen frame
homescreen_frame = self.marionette.find_element(*self._homescreen_iframe_locator)
self.marionette.switch_to_frame(homescreen_frame)
# Not overly concerned about it being visible, only present
self.assertTrue(self.is_element_present(*self._app_icon_locator))
示例12: test_search_paid_app
# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import launch [as 别名]
def test_search_paid_app(self):
marketplace = Marketplace(self.marionette, "Marketplace Dev")
marketplace.launch()
results = marketplace.search("")
self.assertGreater(len(results.search_results), 0, "No results found.")
filter = results.tap_filter()
filter.by_price("paid")
results = filter.tap_apply()
self.assertGreater(len(results.search_results), 0, "No results found.")
for result in results.search_results:
self.assertTrue(re.match("^\$\d+\.\d{2}", result.price), "App %s it's not a paid app." % result.name)
示例13: test_forgot_pin
# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import launch [as 别名]
def test_forgot_pin(self):
old_pin = '1234'
new_pin = '1111'
account = self.create_firefox_account()
marketplace = Marketplace(self.marionette, self.MARKETPLACE_DEV_NAME)
home_page = marketplace.launch()
home_page.login(account.email, account.password)
search_results_page = self.tap_install_button_of_first_paid_app()
payment = Payment(self.marionette)
payment.create_pin(old_pin)
payment.wait_for_buy_app_section_displayed()
self.assertIn(self.app_name, payment.app_name)
payment.tap_cancel_button()
search_results_page.wait_for_payment_cancelled_notification()
search_results_page.search_results[0].tap_install_button()
payment.switch_to_payment_frame()
payment.tap_forgot_pin()
payment.tap_reset_button()
ff_accounts = FirefoxAccounts(self.marionette)
ff_accounts.login(account.email, account.password)
payment.switch_to_payment_frame()
payment.enter_pin(new_pin)
payment.confirm_pin(new_pin)
payment.wait_for_buy_app_section_displayed()
self.assertIn(self.app_name, payment.app_name)
示例14: test_login_marketplace
# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import launch [as 别名]
def test_login_marketplace(self):
# https://moztrap.mozilla.org/manage/case/4134/
marketplace = Marketplace(self.marionette, self.MARKETPLACE_DEV_NAME)
home_page = marketplace.launch()
account = self.create_firefox_account()
home_page.login(account.email, account.password)
# switch back to Marketplace
marketplace.switch_to_marketplace_frame()
# wait for the expected notification, and for user to be signed in
home_page.wait_for_login_success_notification()
settings = home_page.show_menu().tap_settings()
settings.wait_for_sign_out_button()
# Verify that user is logged in
self.assertEqual(account.email, settings.email)
# Sign out, which should return to the Marketplace home screen
settings.tap_sign_out()
# Verify that user is signed out
settings.wait_for_sign_in_displayed()
示例15: test_purchase_app
# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import launch [as 别名]
def test_purchase_app(self):
pin = '1234'
account = self.create_firefox_account()
marketplace = Marketplace(self.marionette, self.MARKETPLACE_DEV_NAME)
home_page = marketplace.launch()
home_page.login(account.email, account.password)
search_results_page = self.tap_install_button_of_first_paid_app()
payment = Payment(self.marionette)
payment.create_pin(pin)
payment.wait_for_buy_app_section_displayed()
self.assertIn(self.app_name, payment.app_name)
payment.tap_buy_button()
self.wait_for_downloads_to_finish()
# Confirm the installation and wait for the app icon to be present
confirm_install = ConfirmInstall(self.marionette)
confirm_install.tap_confirm()
self.assertEqual('%s installed' % self.app_name, search_results_page.install_notification_message)
marketplace.switch_to_marketplace_frame()
app = search_results_page.search_results[0]
self.assertEqual('Open app', app.install_button_text)