class ImplicitWaitTestCase(unittest.TestCase):
    def setUp(self):
        self.p = Page()
        self.p.open()

    def test_implicit_wait_default_works(self):
        self.p.click_delayed_content_button()
        self.p.delayed_content_should_exist()

    def tearDown(self):
        self.p.close()
class ImplicitWaitTestCase(unittest.TestCase):

    def setUp(self):
        self.p = Page()
        self.p.open()

    def test_implicit_wait_default_works(self):
        self.p.click_delayed_content_button()
        self.p.delayed_content_should_exist()

    def tearDown(self):
        self.p.close()