forked from cobrateam/splinter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathis_text_present.py
More file actions
48 lines (37 loc) · 1.96 KB
/
is_text_present.py
File metadata and controls
48 lines (37 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
# Copyright 2012 splinter authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
from .fake_webapp import EXAMPLE_APP
class IsTextPresentTest(object):
def test_is_text_present(self):
"should verify if text is present"
self.assertTrue(self.browser.is_text_present('Example Header'))
def test_is_text_present_and_should_return_false(self):
"should verify if text is present and return false"
self.assertFalse(self.browser.is_text_present('Text that not exist'))
def test_is_text_present_and_should_wait_time(self):
"should verify if text is present and wait for five seconds"
self.browser.find_link_by_text('FOO').click()
self.assertTrue(self.browser.is_text_present('BAR!', wait_time=5))
def test_is_text_not_present(self):
"should verify if text is not present"
self.assertTrue(
self.browser.is_text_not_present('Text that not exist'))
def test_is_text_not_present_and_should_return_false(self):
"should verify if text is not prasent and return false"
self.assertFalse(self.browser.is_text_not_present('Example Header'))
def test_is_text_not_present_and_should_wait_time(self):
"should verify if text is not present and wait for five seconds"
self.browser.find_link_by_text('FOO').click()
self.assertTrue(
self.browser.is_text_not_present('another text', wait_time=5)
)
def test_is_text_present_no_body(self):
"should work properly (return false) even if there's no body"
self.browser.visit(EXAMPLE_APP + "no-body")
self.assertFalse(self.browser.is_text_present('No such text'))
def test_is_text_not_present_no_body(self):
"returns true if there's no body"
self.browser.visit(EXAMPLE_APP + "no-body")
self.assertTrue(self.browser.is_text_not_present('No such text'))