Compare commits

..

No commits in common. "main" and "cas_activities_20211109" have entirely different histories.

4 changed files with 16 additions and 15 deletions

View File

@ -10,7 +10,6 @@ from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.action_chains import ActionChains
from typing import Tuple, List
@ -153,9 +152,6 @@ class BaseTester:
"""Return an XPATH string to the tab labelled `tablabel`."""
return "//li/a[@title='{label}']/..".format(label=tabtitle)
def get_actions_dropdown_option_selector(self, optionlabel):
"""Return an XPATH string to the option labelled `optionlabel` (This is not a normal dropdown)."""
return "//div[text()='{label}']".format(label=optionlabel)
class SearchExportTester(BaseTester):
def __init__(self, *args, **kwargs):
@ -189,13 +185,18 @@ class SearchExportTester(BaseTester):
self.wait_until_visible((By.ID, "alpha-filter"))
self.debug("table of results has loaded")
def _select_option_from_magic_dropdown_label(self, option_label: str):
def _select_option_from_magic_dropdown(self, option_id: str):
"""
Wrapper to click an option from the dropdown menu within the search on civicrm.
Magic dropdown because it literally is not how dropdowns should work at all
All options have an ID but this can change depending on the context of how you get to the search page
MUST BE CALLED WHEN ON THE SEARCH RESULTS PAGE
"""
self.debug("exporting results using the magic dropdown")
self.find_element_by_id(self.contact_selectall_id).click()
self.find_element_by_id(self.contact_dropdown_id).click()
self.wait_until_visible((By.XPATH, self.get_actions_dropdown_option_selector(option_label)))
option = self.find_element(By.XPATH, self.get_actions_dropdown_option_selector(option_label))
ActionChains(self.browser).move_to_element(option).perform()
option.click()
self.find_element_by_id(option_id).click()
self.wait_until_visible((By.CSS_SELECTOR, ".crm-block"))
def download_export(self, data: dict) -> requests.Response:
"""

View File

@ -2,8 +2,6 @@ import csv
import io
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
from selenium.webdriver.support.select import Select
from .base import SearchExportTester
@ -16,6 +14,8 @@ class TestContactExport(SearchExportTester):
self.desc(
"Testing if exporting contacts from a search returns a CSV file with all expected contacts."
)
# FIXME: THIS FUCKING CHANGES!!!!!!
# If you are having issues with the tests, go back and try and find the id for the item in the drop down. its all stupid js so we have to hack it like this and press it instead of post request
self.contact_exportoption_id = "select2-result-label-13"
def download_csv(self):
@ -64,7 +64,7 @@ class TestContactExport(SearchExportTester):
self.debug("searching for contacts with term '%s'" % search_term)
self._wait_for_search_to_load()
result_no = self._get_contact_search_number()
self._select_option_from_magic_dropdown_label("Export contacts")
self._select_option_from_magic_dropdown(self.contact_exportoption_id)
exported_number_exports = self.calculate_exported_contacts_number()
if exported_number_exports == (result_no):

View File

@ -33,7 +33,7 @@ class TestSteeringCommitteePrintLabels(SearchExportTester):
self._wait_for_search_to_load()
result_no = self._get_contact_search_number()
self.debug("exporting results using the magic dropdown")
self._select_option_from_magic_dropdown_label("Mailing labels - print")
self._select_option_from_magic_dropdown(self.mail_label_option)
# By omitting the field, we are effectively disabling the do not mail filter
data = {
"_qf_default": "Label:submit",

View File

@ -31,8 +31,8 @@ if __name__ == "__main__":
cl_arg = (
arguments.user, arguments.passwd, arguments.dev, arguments.show_browser
)
#TestActivitiesTab(*cl_arg).test_all_hardcoded_contacts()
#TestContactExport(*cl_arg).test_hardcoded_search_terms()
TestActivitiesTab(*cl_arg).test_all_hardcoded_contacts()
TestContactExport(*cl_arg).test_hardcoded_search_terms()
TestSteeringCommitteePrintLabels(*cl_arg).test()
# Mailing list