我有一个关于将分支名称作为字符串传递给我的代码的问题。
所以我们使用的是git存储库,分支编号也指的是放置构建的登台环境。意思是,如果我的分支是001,我的网址是001.test.myapplication.com。
我正在编写在分支的登台环境中执行的自动化测试。我的问题是,是否可以将分支编号传递给我的代码,以便我可以将其作为我要测试的URL的一部分?
我正在使用Visual Studio 2017,selenium和specflow。
答案 0 :(得分:1)
答案 1 :(得分:1)
我实际上找到了一个完美的解决方案。如果将来共享,其他人也可以在需要时使用它。
ProcessStartInfo startInfo = new ProcessStartInfo("git.exe");
startInfo.UseShellExecute = false;
startInfo.WorkingDirectory = "dir Here";
startInfo.RedirectStandardInput = true;
startInfo.RedirectStandardOutput = true;
startInfo.Arguments = "rev-parse --abbrev-ref HEAD";
Process process = new Process();
process.StartInfo = startInfo;
process.Start();
string branchname = process.StandardOutput.ReadLine();