當前位置: 首頁>>代碼示例>>Python>>正文


Python assertion.Assert類代碼示例

本文整理匯總了Python中JDI.jdi_assert.testing.assertion.Assert的典型用法代碼示例。如果您正苦於以下問題:Python Assert類的具體用法?Python Assert怎麽用?Python Assert使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Assert類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_focus

 def test_focus(self):
     value = "value"
     attribute_name = "focusTest"
     self.text_field.set_attribute(attribute_name, value)
     self.text_field.focus()
     driver = JDISettings.get_driver_factory().get_driver()
     result_value = driver._switch_to.active_element.get_attribute(attribute_name)
     Assert.assert_equal(value, result_value)
開發者ID:Mikhail9090,項目名稱:JDI,代碼行數:8,代碼來源:text_field_tests.py

示例2: check_action_throw_error

    def check_action_throw_error(action, message):
        try:
            action()
        except Exception as ex:
            Assert.assert_contains(str(ex), message)
            return
        except:
            d = 8

        raise Exception("Exception not thrown")
開發者ID:Mikhail9090,項目名稱:JDI,代碼行數:10,代碼來源:common_action_data.py

示例3: test_get_options_as_text

 def test_get_options_as_text(self):
     Assert.assert_equal(self.dropdown.get_options_as_text(), "Colors, Red, Green, Blue, Yellow")
開發者ID:Mikhail9090,項目名稱:JDI,代碼行數:2,代碼來源:dropdown_expanded_tests.py

示例4: test_get_value

 def test_get_value(self):
     Assert.assert_equal(self.radio_buttons.get_value(), "1")
開發者ID:Mikhail9090,項目名稱:JDI,代碼行數:2,代碼來源:radio_button_tests.py

示例5: test_is_selected

 def test_is_selected(self):
     Assert.assert_equal(self.radio_buttons.is_selected("7"), False)
     Assert.assert_equal(self.radio_buttons.is_selected("1"), True)
開發者ID:Mikhail9090,項目名稱:JDI,代碼行數:3,代碼來源:radio_button_tests.py

示例6: test_get_selected

 def test_get_selected(self):
     Assert.assert_equal(self.radio_buttons.get_selected(), "1")
開發者ID:Mikhail9090,項目名稱:JDI,代碼行數:2,代碼來源:radio_button_tests.py

示例7: test_get_options_as_text

 def test_get_options_as_text(self):
     Assert.assert_equal(self.radio_buttons.get_options_as_text(), ", ".join(self.odd_options))
開發者ID:Mikhail9090,項目名稱:JDI,代碼行數:2,代碼來源:radio_button_tests.py

示例8: test_fill

 def test_fill():
     W3cSite.frame_page.try_it_button.click()
     Assert.assert_equal(W3cSite.frame_page.i_frame.label_button.get_text(), "Click Me!")
開發者ID:Mikhail9090,項目名稱:JDI,代碼行數:3,代碼來源:frame_tests.py

示例9: test_get_reference

 def test_get_reference(self):
     Assert.assert_equal(self.link.get_reference(), EpamJDISite.support_page.url)
開發者ID:Mikhail9090,項目名稱:JDI,代碼行數:2,代碼來源:link_tests.py

示例10: check_action

 def check_action(text, line_number=0):
     Assert.assert_contains(EpamJDISite.actions_log.get_text_by_line(line_number), text)
開發者ID:Mikhail9090,項目名稱:JDI,代碼行數:2,代碼來源:common_action_data.py

示例11: test_get_value

 def test_get_value(self):
     Assert.assert_equal(self.dropdown.get_value(), "Colors")
開發者ID:Mikhail9090,項目名稱:JDI,代碼行數:2,代碼來源:dropdown_expanded_tests.py

示例12: test_is_selected_enum

 def test_is_selected_enum(self):
     Assert.assert_equal(self.dropdown.is_selected(Colors.COLORS), True)
開發者ID:Mikhail9090,項目名稱:JDI,代碼行數:2,代碼來源:dropdown_expanded_tests.py

示例13: test_is_selected

 def test_is_selected(self):
     Assert.assert_equal(self.dropdown.is_selected("Colors"), True)
開發者ID:Mikhail9090,項目名稱:JDI,代碼行數:2,代碼來源:dropdown_expanded_tests.py

示例14: test_get_selected

 def test_get_selected(self):
     Assert.assert_equal(self.dropdown.get_selected(), "Colors")
開發者ID:Mikhail9090,項目名稱:JDI,代碼行數:2,代碼來源:dropdown_expanded_tests.py

示例15: test_get_name

 def test_get_name(self):
     Assert.assert_equal(self.dropdown.get_name(), "color_dropdown")
開發者ID:Mikhail9090,項目名稱:JDI,代碼行數:2,代碼來源:dropdown_expanded_tests.py


注:本文中的JDI.jdi_assert.testing.assertion.Assert類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。