コード例 #1
0
ファイル: PrintoutSteps.cs プロジェクト: devronking/Betway
        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;
        }