Having trouble calling the method chrome_configuration that comes from class Profile, I want to call that method on TestBase class:
class TestBase:
driver = None
def setup(self):
Profile.chrome_configuration()
class Profile:
driver = None
def chrome_configuration(self):
self.driver = webdriver.Chrome()
self.driver.set_window_size(1900, 1200)
self.driver.maximize_window()