6 lines
390 B
Python
6 lines
390 B
Python
from page_classes.training_attendee_counts_class import TrainingEventAttendeeCounts
|
|
from page_classes.page_class_constants import REPORT_CONFIGS
|
|
from page_classes.authentication_page_wrapper import AuthenticationPageWrapper
|
|
|
|
auth_wrapper = AuthenticationPageWrapper(inner_report_page=TrainingEventAttendeeCounts, report_config=REPORT_CONFIGS[TrainingEventAttendeeCounts])
|
|
auth_wrapper.run() |