mangroveorg/datawinners

View on GitHub
func_tests/pages/createprojectpage/create_project_locator.py

Summary

Maintainability
A
0 mins
Test Coverage
# vim: ai ts=4 sts=4 et sw=4 encoding=utf-8

from framework.utils.common_utils import *


# By default every locator should be CSS
# Abbr:
# TB - Text Box
# CB - Check Box
# RB - Radio Button
# BTN - Button
# DD - Drop Down
# LINK - Links
# LABEL - Label


# variable to access locators
LOCATOR = "locator"
BY = "by"

PROJECT_NAME_TB = by_css(".questionnaire_title")
PROJECT_BACKGROUND_TB = by_css("textarea#id_goals")
SURVEY_PROJECT_RB = by_css("input[value='survey']")
PUBLIC_INFORMATION_RB = by_css("input[value='public information']")
DATA_SENDER_RB = by_css("input#id_activity_report_0")
OTHER_SUBJECT_RB = by_css("input#id_activity_report_1")
SUBJECTS_DD = by_css("select#id_entity_type")

FREQUENCY_NEED_DATA_RB = by_css("input#id_frequency_enabled_1")
HAS_DEADLINE = by_css('input#id_has_deadline_1')
REMINDERS_ENABLED = by_css('input#id_reminders_enabled_1')

SMS_CB = by_css("input[value='sms']")
SMS_CB_CHECKED = by_css("input[value='sms']:checked")
SMART_PHONE_CB = by_css("input[value='smartphone']")
SMART_PHONE_CB_CHECKED = by_css("input[value='smartphone']:checked")
WEB_CB = by_css("input[value='web']")
WEB_CB_CHECKED = by_css("input[value='web']:checked")
SAVE_AND_CREATE_BTN = by_css("input#save_and_create")
CONTINUE_BTN = by_id("continue_project")
PROJECT_NAME_ERROR_MSG_LABEL = by_css("label.error[for='id_name']")
QUESTIONNAIRE_ABOUT_MSG_LABEL = by_css("li>label[for='id_activity_report_0']~ul.errorlist>li")
PROJECT_DESCRIPTION_MSG = by_css("[for='id_goals'].error")
INFORM_DATASENDERS_OK_BUTTON_BY_CSS = by_css("#inform_datasender_about_changes a.yes_button")

COPY_EXISTING_QUESTIONNAIRE_LINK_LOCATOR = by_id("copy_existing_questionnaire")
QUESTIONNAIRES_LIST_LOCATOR = by_css('#existing_questionnaires div.questionnaire_data div.highlight_on_hover')