6 lines
318 B
Python
6 lines
318 B
Python
from page_classes.home_page_class import HomePage
|
|
from page_classes.page_class_constants import REPORT_CONFIGS
|
|
from page_classes.authentication_page_wrapper import AuthenticationPageWrapper
|
|
|
|
auth_wrapper = AuthenticationPageWrapper(inner_report_page=HomePage, report_config=REPORT_CONFIGS[HomePage])
|
|
auth_wrapper.run() |