mirror of
https://github.com/TrentSPalmer/hugo_themes_report.git
synced 2024-12-04 08:41:29 -08:00
add test_description_per_tags.py
This commit is contained in:
parent
c2ec55b552
commit
72e583fa37
69
test/test_description_per_tags.py
Normal file
69
test/test_description_per_tags.py
Normal file
@ -0,0 +1,69 @@
|
||||
from test.test_description import TestDescription
|
||||
from unittest import TestCase
|
||||
from secrets import choice
|
||||
import re
|
||||
|
||||
|
||||
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()
|
Loading…
Reference in New Issue
Block a user