Ejemplo n.º 1
0
        public void GivenIHaveNavigatedToTheSpecifiedWebsite(Table table)
        {
            //Store paramters in dictionary table
            var website = table.CreateInstance <Website>();

            //Initialise browser
            driver = FunctionLibrary.BrowserInit(website.browser);
            //Go to specified URL
            driver.Url = website.url;
        }