File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
src/FlaUI.WebDriver.UITests Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,7 @@ public void Setup()
1919 string assemblyDir = Path . GetDirectoryName ( Assembly . GetExecutingAssembly ( ) . Location ) ;
2020 Directory . SetCurrentDirectory ( assemblyDir ) ;
2121
22- var assemblyConfigurationAttribute = Assembly . GetExecutingAssembly ( ) . GetCustomAttribute < AssemblyConfigurationAttribute > ( ) ;
23- var buildConfigurationName = assemblyConfigurationAttribute ? . Configuration ;
24-
25- var webDriverPath = $ "..\\ ..\\ ..\\ ..\\ FlaUI.WebDriver\\ bin\\ { buildConfigurationName } \\ FlaUI.WebDriver.exe";
22+ string webDriverPath = Path . Combine ( Directory . GetCurrentDirectory ( ) , "FlaUI.WebDriver.exe" ) ;
2623 var webDriverArguments = $ "--urls={ WebDriverUrl } ";
2724 var webDriverProcessStartInfo = new ProcessStartInfo ( webDriverPath , webDriverArguments )
2825 {
You can’t perform that action at this time.
0 commit comments