public void Create() { driver = new FirefoxDriver(); //instanciate the website class. website = new Website(); // Instanciate site configuration class. siteConfig = new SiteConfigurator(website); }
public Authenticator(Website website, IWebDriver driver) { this.website = website; this.driver = driver; }
public SiteConfigurator(Website website) { this.url = website.url; this.username = website.username; this.password = website.password; }