fix test_search_block

This commit is contained in:
a.krasnov
2020-12-02 00:52:37 +03:00
parent 6f53f11749
commit 41d79372fb
3 changed files with 6 additions and 7 deletions

View File

@@ -20,10 +20,11 @@ class TestExample(TestCase):
self.driver.find_element_by_xpath("//input[not(@type='hidden')]").send_keys("foo")
self.check_by_screenshot(None, full_page=True)
def test_search_result(self):
def test_search_block(self):
self.driver.get("https://go.mail.ru/")
def action():
# Тестируем подсветку таба после переключения на другую вертикаль
self.driver.find_element_by_xpath("//span[contains(text(), 'Соцсети')]").click()
self.check_by_screenshot((By.CSS_SELECTOR, ".MainPage-verticalLinksWrapper"), action=action)
self.check_by_screenshot((By.CSS_SELECTOR, ".MainVerticalsNav-listItemActive"), action=action)