6 lines
347 B
Python
6 lines
347 B
Python
from page_classes.naics_report_page_class import NaicsReportPage
|
|
from page_classes.page_class_constants import REPORT_CONFIGS
|
|
from page_classes.authentication_page_wrapper import AuthenticationPageWrapper
|
|
|
|
auth_wrapper = AuthenticationPageWrapper(inner_report_page=NaicsReportPage, report_config=REPORT_CONFIGS[NaicsReportPage])
|
|
auth_wrapper.run() |