Exemplo n.º 1
0
 def checkHeaderOfTable(self):
     haed_table = CampaignEditPage.get_head_table_audience()
     assert haed_table['DATE'] == u"Date"
     assert haed_table['NOM'] == u"Nom"
     assert haed_table['CREATEUR'] == u"Créateur"
     assert haed_table['NB_CONTACT'] == u"Nb de contacts"
     assert haed_table['STATUT'] == u"Statut"
Exemplo n.º 2
0
def test_create_campaign_and_set_secenario_target_to_email(get_driver, login):
    """
        Test_id: CREATE_CAMPAIGN_WITH_SCENARIO_EMAIL_TO_TARGET
        Preconditions:
          - URL of the application
        Test:
          - As a user with full rights connected to Iris
          - User clicks on new campaign button
          - User sets new campaign's name
          - User sets scenario by drag and drop email before target
          - User saves the campaign
        Verification:
          - Check that the campaign is created
    """
    login()
    current_campaign_dashboard_page = CampaignsDashboardPage(get_driver)
    current_campaign_dashboard_page.click_new_campaign_btn()
    current_campaign_edit_page = CampaignEditPage(get_driver)
    current_campaign_edit_page.set_name(campaign_name)
    current_campaign_edit_page.click_scenario_tab()
    current_campaign_edit_page.drag_n_drop_second_element_to_first(
        "email", "target")
    current_campaign_edit_page.click_save_btn()
    CampaignPageTest.check_campaign_is_saved()
Exemplo n.º 3
0
def test_create_campaign_without_scenario(get_driver, login, campaign_name):
    """
        Test_id: CREATE_CAMPAIGN_WITHOUT_SCENARIO
        Preconditions:
          - URL of the application
        Test:
          - As a user with full rights connected to Iris
          - User clicks on new campaign button
          - User sets new campaign's name and save the campaign
        Verification:
          - Check that the campaign is created
    """
    login()
    current_campaign_dashboard_page = CampaignsDashboardPage(get_driver)
    current_campaign_dashboard_page.click_new_campaign_btn()
    current_campaign_edit_page = CampaignEditPage(get_driver)
    current_campaign_edit_page.set_name(campaign_name)
    current_campaign_edit_page.click_save_btn()
    CampaignPageTest.check_campaign_is_saved()

    assert True
Exemplo n.º 4
0
 def checkPageTitle(self):
     actualvalue = CampaignEditPage.get_page_title()
     assert actualvalue == "Cabestan -- Reloaded", "The title of the page is different to the expected value. Actual value is :" + actualvalue
Exemplo n.º 5
0
 def checkContainerTitle(self):
     actualvalue = CampaignEditPage.get_container_title()
     assert actualvalue == u"Dernières audiences", "The title of the container is different to the expected value. Actual value is :" + actualvalue
Exemplo n.º 6
0
 def checkHeaderTitle(self):
     actualvalue = CampaignEditPage.get_header_title()
     assert (
         actualvalue == "Audiences",
         "The title of the header is different to the expected value. Actual value is :"
         + actualvalue)