Example #1
0
 def test_user_ask_question_In_pay_lesson(self):
     driver = self.driver
     main_steps = MainPage(driver)
     popup_steps = PopupSignIn(driver)
     user_steps = PaymNotYandexRu(driver)
     user = PagePaidLessonQuestion(driver)
     get_url = URLPaidLesson(driver)
     delete_steps = Cycles(driver)
     with allure.step("Нажать на кнопку Войти"):
         main_steps.go_to_sgnIn()
     with allure.step("Ввожу [email protected]/password=123456"):
         user_steps.enter_email()
         user_steps.enter_password()
     with allure.step("Нажать на кнопку Авторизоваться"):
         popup_steps.click_button_login()
     with allure.step("Перейти на урок =Химические элементы. Символы химических элементов"):
         get_url.go_chemistry_8_grade_questions()
     with allure.step("Удалить существующие вопросы в списке"):
         delete_steps.delete_all_question()
     with allure.step("Ввести текст в поле ввода Привет Rich"):
         user.ask_question()
     with allure.step("Нажать на кнопку Отправить"):
         user.post_question()
     with allure.step("Проверяю отображение опубликованного в списке Вопроса"):
         # self.assertEqual(u"Привет Rich", self.driver.find_element_by_css_selector("p.comment__text").text)
         self.assertEquals(u"Привет Rich", self.driver.find_element_by_css_selector("p.comment__text").text)
    def test_click_button_comment_in_tab_ask_question(self):
        driver = self.driver
        step_user = PagePaidLessonQuestion(driver)
        url_get = URLPaidLesson(driver)

        with allure.step("Перейти на страницу урока во вкалдку Вопросы к уроку"):
            url_get.go_chemistry_8_grade_questions()
        with allure.step("Нажать на кнопку Комментировать"):
            step_user.click_button_comment()
        with allure.step("Поп-ап Регистрации появился"):
            self.assertEquals(u"Зарегистрируйтесь",
                              self.driver.find_element_by_css_selector("h5.popup-header__title").text)
Example #3
0
    def test_click_button_logged_in_stub_question(self):
        driver = self.driver
        step_user = PaidLesson(driver)
        url_get = URLPaidLesson(driver)

        with allure.step("Перейти на страницу урока во вкалдку Тесты"):
            url_get.go_chemistry_8_grade_questions()
        with allure.step("В заглушке нажать на кнопку Войти"):
            step_user.click_button_sign_in_stubs()
        with allure.step("Поп-ап Авторизации появился"):
            self.assertEquals(u"Войдите в профиль",
                              self.driver.find_element_by_css_selector("h5.popup-header__title").text)
    def test_click_button_buy_ticket_in_stub_questions(self):
        driver = self.driver
        step_user = PaidLesson(driver)
        url_get = URLPaidLesson(driver)

        with allure.step(
                "Перейти на страницу урока во вкалдку Вопросы к уроку"):
            url_get.go_chemistry_8_grade_questions()
        with allure.step("Нажать на кнопку Оплатить абонемент"):
            step_user.click_button_buy_ticket_in_stubs()
        with allure.step("П редиректнуло на страницу оплаты"):
            self.driver.switch_to_window(driver.window_handles[2])
            assert self.driver.current_url == 'https://staging.interneturok.ru/payment'