Unix批处理文件使用selenium C#automation运行

时间:2017-10-25 10:05:26

标签: selenium selenium-webdriver

我有一个要求,就像有.bat批处理文件列表我需要使用selenium C#自动化批处理?有可能吗?

1 个答案:

答案 0 :(得分:0)

无需使用Selenium。 使用以下代码。创建一个函数,它将FileName和WorkingDirectory作为参数:

System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = "C:\\BatchFiles\\Demo.bat";
proc.StartInfo.WorkingDirectory = "C:\\BatchFiles";
proc.Start();