7 lines
409 B
Python
7 lines
409 B
Python
# Imports from this module
|
|
from page_classes.training_event_count_page_class import TrainingsEventCountsPage
|
|
from page_classes.page_class_constants import REPORT_CONFIGS
|
|
from page_classes.authentication_page_wrapper import AuthenticationPageWrapper
|
|
|
|
auth_wrapper = AuthenticationPageWrapper(inner_report_page=TrainingsEventCountsPage, report_config=REPORT_CONFIGS[TrainingsEventCountsPage])
|
|
auth_wrapper.run() |