mirror of
https://github.com/TrentSPalmer/hugo_themes_report.git
synced 2025-07-05 10:33:16 -07:00
72 lines
2.1 KiB
Python
72 lines
2.1 KiB
Python
import re
|
|
from secrets import choice
|
|
from test.test_description import TestDescription
|
|
from unittest import TestCase
|
|
|
|
from selenium.webdriver.common.by import By
|
|
|
|
|
|
class TestDescriptionPerTags(TestDescription, TestCase):
|
|
def setUp(self):
|
|
super(TestDescriptionPerTags, self).setUp()
|
|
self.driver.find_element(By.ID, 'button-for-filter-by-tags').click()
|
|
self.match = re.compile(r'^(.*)(\s\(\d*\))$')
|
|
|
|
def test_description_per_tags(self):
|
|
tagSelectionRow = self.driver.find_element(
|
|
By.ID, 'tagSelectionRow')
|
|
|
|
inputs = [
|
|
x.get_attribute(
|
|
'id'
|
|
) for x in tagSelectionRow.find_elements(
|
|
By.TAG_NAME, 'input'
|
|
)
|
|
]
|
|
|
|
for x in inputs:
|
|
button = self.driver.find_element(
|
|
By.ID, x).find_element(By.XPATH, '..')
|
|
|
|
self.tags = self.match.search(
|
|
button.find_element(By.TAG_NAME, 'label').text).group(1)
|
|
|
|
button.click()
|
|
self.coalesced_text_test()
|
|
|
|
self.driver.find_element(
|
|
By.ID, x).find_element(By.XPATH, '..').click()
|
|
|
|
def test_description_per_tags_random(self):
|
|
self.randomly_select_tag()
|
|
|
|
def randomly_select_tag(self):
|
|
tagSelectionRow = self.driver.find_element(
|
|
By.ID, 'tagSelectionRow')
|
|
|
|
inputs = [
|
|
x.get_attribute(
|
|
'id'
|
|
) for x in tagSelectionRow.find_elements(
|
|
By.TAG_NAME, 'input'
|
|
)
|
|
]
|
|
|
|
unchecked_inputs = [
|
|
x for x in inputs if self.driver.find_element(
|
|
By.ID, x).is_selected() is False
|
|
]
|
|
|
|
if len(unchecked_inputs) > 0:
|
|
random_input = choice(unchecked_inputs)
|
|
button = self.driver.find_element(
|
|
By.ID, random_input).find_element(By.XPATH, '..')
|
|
|
|
tag = self.match.search(
|
|
button.find_element(By.TAG_NAME, 'label').text).group(1)
|
|
|
|
button.click()
|
|
|
|
self.assertIn(tag, self.desc.text[143:-15])
|
|
self.randomly_select_tag()
|