• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Python expected.element_not_present函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中marionette_driver.expected.element_not_present函数的典型用法代码示例。如果您正苦于以下问题:Python element_not_present函数的具体用法?Python element_not_present怎么用?Python element_not_present使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了element_not_present函数的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。

示例1: test_no_certificate

    def test_no_certificate(self):
        with self.marionette.using_context("content"):
            self.marionette.navigate(self.url)

        # Check the favicon
        # TODO: find a better way to check, e.g., mozmill's isDisplayed
        favicon_hidden = self.marionette.execute_script(
            """
          return arguments[0].hasAttribute("hidden");
        """,
            script_args=[self.browser.navbar.locationbar.identity_icon],
        )
        self.assertFalse(favicon_hidden, "The identity icon is visible")

        # Check that the identity box organization label is blank
        self.assertEqual(
            self.locationbar.identity_organization_label.get_attribute("value"), "", "The organization has no label"
        )

        # Open the identity popup
        self.locationbar.open_identity_popup()

        # Check the idenity popup doorhanger
        self.assertEqual(self.identity_popup.element.get_attribute("connection"), "not-secure")

        # The expander for the security view does not exist
        expected.element_not_present(lambda m: self.identity_popup.main.expander)

        # Only the insecure label is visible
        secure_label = self.identity_popup.view.main.secure_connection_label
        self.assertEqual(secure_label.value_of_css_property("display"), "none")

        insecure_label = self.identity_popup.view.main.insecure_connection_label
        self.assertNotEqual(insecure_label.value_of_css_property("display"), "none")

        self.identity_popup.view.main.expander.click()
        Wait(self.marionette).until(lambda _: self.identity_popup.view.security.selected)

        # Open the Page Info window by clicking the "More Information" button
        page_info = self.browser.open_page_info_window(
            lambda _: self.identity_popup.view.security.more_info_button.click()
        )

        # Verify that the current panel is the security panel
        self.assertEqual(page_info.deck.selected_panel, page_info.deck.security)

        # Check the domain listed on the security panel contains the url's host name
        self.assertIn(urlparse(self.url).hostname, page_info.deck.security.domain.get_attribute("value"))

        # Check the owner label equals localized 'securityNoOwner'
        self.assertEqual(
            page_info.deck.security.owner.get_attribute("value"), page_info.get_property("securityNoOwner")
        )

        # Check the verifier label equals localized 'notset'
        self.assertEqual(page_info.deck.security.verifier.get_attribute("value"), page_info.get_property("notset"))
开发者ID:linclark,项目名称:gecko-dev,代码行数:56,代码来源:test_no_certificate.py


示例2: close_app

 def close_app(self, app):
     self.wait_for_card_ready(app)
     Wait(self.marionette).until(
         expected.element_present(*self._app_card_locator(app)))
     self.marionette.find_element(*self._close_button_locator(app)).tap()
     Wait(self.marionette).until(
         expected.element_not_present(*self._app_card_locator(app)))
开发者ID:Amrltqt,项目名称:gaia,代码行数:7,代码来源:cards_view.py


示例3: tap_edit_done

 def tap_edit_done(self):
      element = self.marionette.find_element(*self._exit_edit_mode_locator)
      Wait(self.marionette).until(lambda m: element.is_displayed())
      element.tap()
      Wait(self.marionette).until(lambda m: not element.is_displayed())
      Wait(self.marionette).until(expected.element_not_present(
          *self._edit_mode_locator))
开发者ID:DouglasSherk,项目名称:gaia,代码行数:7,代码来源:app.py


示例4: tap_send

 def tap_send(self, timeout=120):
     send = Wait(self.marionette).until(
         expected.element_present(*self._send_message_button_locator))
     Wait(self.marionette).until(expected.element_enabled(send))
     send.tap()
     Wait(self.marionette, timeout=timeout).until(
         expected.element_not_present(*self._message_sending_locator))
     from gaiatest.apps.messages.regions.message_thread import MessageThread
     return MessageThread(self.marionette)
开发者ID:Archaeopteryx,项目名称:gaia,代码行数:9,代码来源:new_message.py


示例5: test_buttons

    def test_buttons(self):
        self.marionette.set_context('content')

        # Load initial web page
        self.marionette.navigate(self.url)
        Wait(self.marionette).until(expected.element_present(lambda m:
                                    m.find_element(By.ID, 'mozilla_logo')))

        with self.marionette.using_context('chrome'):
            # Both buttons are disabled
            self.assertFalse(self.navbar.back_button.is_enabled())
            self.assertFalse(self.navbar.forward_button.is_enabled())

            # Go to the homepage
            self.navbar.home_button.click()

        Wait(self.marionette).until(expected.element_not_present(lambda m:
                                    m.find_element(By.ID, 'mozilla_logo')))
        self.assertEqual(self.marionette.get_url(), self.browser.default_homepage)

        with self.marionette.using_context('chrome'):
            # Only back button is enabled
            self.assertTrue(self.navbar.back_button.is_enabled())
            self.assertFalse(self.navbar.forward_button.is_enabled())

            # Navigate back
            self.navbar.back_button.click()

        Wait(self.marionette).until(expected.element_present(lambda m:
                                    m.find_element(By.ID, 'mozilla_logo')))
        self.assertEqual(self.marionette.get_url(), self.url)

        with self.marionette.using_context('chrome'):
            # Only forward button is enabled
            self.assertFalse(self.navbar.back_button.is_enabled())
            self.assertTrue(self.navbar.forward_button.is_enabled())

            # Navigate forward
            self.navbar.forward_button.click()

        Wait(self.marionette).until(expected.element_not_present(lambda m:
                                    m.find_element(By.ID, 'mozilla_logo')))
        self.assertEqual(self.marionette.get_url(), self.browser.default_homepage)
开发者ID:kilikkuo,项目名称:gecko-dev,代码行数:43,代码来源:test_toolbars.py


示例6: login

    def login(self, email, password):
        # This only supports logging in with a known user and no existing session
        self.type_email(email)
        self.tap_continue()

        self.type_password(password)
        self.tap_returning()

        self.marionette.switch_to_frame()
        Wait(self.marionette).until(
            expected.element_not_present(*self._persona_frame_locator))
        self.apps.switch_to_displayed_app()
开发者ID:AaskaShah,项目名称:gaia,代码行数:12,代码来源:app.py


示例7: close_test_container

    def close_test_container(self):
        self.marionette.set_context(self.marionette.CONTEXT_CONTENT)

        result = self.marionette.execute_async_script(
            """
if((navigator.mozSettings == undefined) || (navigator.mozSettings == null) || (navigator.mozApps == undefined) || (navigator.mozApps == null)) {
    marionetteScriptFinished(false);
    return;
}
let setReq = navigator.mozSettings.createLock().set({'lockscreen.enabled': false});
setReq.onsuccess = function() {
    let appsReq = navigator.mozApps.mgmt.getAll();
    appsReq.onsuccess = function() {
        let apps = appsReq.result;
        for (let i = 0; i < apps.length; i++) {
            let app = apps[i];
            if (app.manifest.name === 'Test Container') {
                let manager = window.wrappedJSObject.appWindowManager || window.wrappedJSObject.AppWindowManager;
                if (!manager) {
                    marionetteScriptFinished(false);
                    return;
                }
                manager.kill(app.origin);
                marionetteScriptFinished(true);
                return;
            }
        }
        marionetteScriptFinished(false);
    }
    appsReq.onerror = function() {
        marionetteScriptFinished(false);
    }
}
setReq.onerror = function() {
    marionetteScriptFinished(false);
}""",
            script_timeout=60000,
        )

        if not result:
            raise Exception("Failed to close Test Container app")

        Wait(self.marionette, timeout=10, interval=0.2).until(
            element_not_present("css selector", 'iframe[src*="app://test-container.gaiamobile.org/index.html"]')
        )
开发者ID:html-shell,项目名称:mozbuild,代码行数:45,代码来源:marionette_test.py


示例8: wait_for_element_not_present

 def wait_for_element_not_present(self, by, locator):
     Wait(self.marionette).until(expected.element_not_present(by, locator))
开发者ID:mozilla-services,项目名称:marionette-wrapper,代码行数:2,代码来源:base.py


示例9: test_element_not_present_is_present

 def test_element_not_present_is_present(self):
     self.marionette.navigate(static_element)
     r = expected.element_not_present(p)(self.marionette)
     self.assertIsInstance(r, bool)
     self.assertFalse(r)
开发者ID:Wafflespeanut,项目名称:gecko-dev,代码行数:5,代码来源:test_expected.py


示例10: test_element_not_present_locator

 def test_element_not_present_locator(self):
     r = expected.element_not_present(By.ID, "nosuchelement")(self.marionette)
     self.assertIsInstance(r, bool)
     self.assertTrue(r)
开发者ID:Wafflespeanut,项目名称:gecko-dev,代码行数:4,代码来源:test_expected.py


示例11: test_element_not_present_func

 def test_element_not_present_func(self):
     r = expected.element_not_present(no_such_element)(self.marionette)
     self.assertIsInstance(r, bool)
     self.assertTrue(r)
开发者ID:Wafflespeanut,项目名称:gecko-dev,代码行数:4,代码来源:test_expected.py


示例12: hang_up

 def hang_up(self):
     self.marionette.find_element(*self._hangup_bar_locator).tap()
     self.marionette.switch_to_frame()
     Wait(self.marionette).until(
         expected.element_not_present(*self._call_screen_locator))
开发者ID:Cwiiis,项目名称:gaia,代码行数:5,代码来源:call_screen.py



注:本文中的marionette_driver.expected.element_not_present函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python expected.element_present函数代码示例发布时间:2022-05-27
下一篇:
Python expected.element_not_displayed函数代码示例发布时间:2022-05-27
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap