def test_search_love_get_five(self): logging.info('=====test_search_love_get_five start=====') l = Tarot(self.driver) assert l.search_true_love() == True assert l.get_search_love_five() == True
def test_search_love_quit_no(self): logging.info('=====test_search_love_quit_no start======') l = Tarot(self.driver) assert l.search_true_love() == True assert l.search_love_quit_no() == True
def test_three_tarot_share(self): logging.info('============test_three_tarot_share start===========') l = Tarot(self.driver) assert l.three_tarot_share() == True
def test_search_love_tarot_enter(self): logging.info('======test_search_love_tarot_enter start=====') l = Tarot(self.driver) assert l.search_true_love() == True
def test_two_tarot_share(self): logging.info('===========test_two_tarot_share start==========') l = Tarot(self.driver) assert l.two_tarot_share() == False
def test_get_three_tarot(self): logging.info('==========test_get_three_tarot start=========') l = Tarot(self.driver) assert l.get_three_tarot() == True
def test_tarot_everyday_enter(self): logging.info('===========test_tarot_everyday_enter start=========') l = Tarot(self.driver) assert l.everyday_tarot_enter() == True
def test_career_tarot_quit_no(self): logging.info('=======test_career_tarot_quit_no start=======') l = Tarot(self.driver) assert l.career() == True assert l.career_tarot_quit_no() == True
def test_career_tarot_get_four(self): logging.info('======test_career_tarot_get_four start========') l = Tarot(self.driver) assert l.career() == True assert l.get_career_four() == True