public void SetUpDriver(string url, string binaryPath, string binaryName)
        {
            var zipPath = FileHelper.GetZipDestination(url);

            binaryPath = _binaryService.SetupBinary(url, zipPath, binaryPath, binaryName);
            _variableService.SetupVariable(binaryPath);
        }
예제 #2
0
        private string SetUpDriverImpl(string url, string binaryPath)
        {
            var zipPath = FileHelper.GetZipDestination(url);

            binaryPath = _binaryService.SetupBinary(url, zipPath, binaryPath);
            _variableService.SetupVariable(binaryPath);
            return(binaryPath);
        }