10 lines
307 B
Python
10 lines
307 B
Python
from pages.base_page import BasePage
|
|
# from Locators.email_tab import EmailTabLocators
|
|
from data.assertions import Assertions
|
|
from playwright.sync_api import Page
|
|
|
|
class EmailTab(BasePage):
|
|
def __init__(self, page: Page) -> None:
|
|
super().__init__(page)
|
|
self.assertion = Assertions(page)
|