如何在 C# 中以编程方式启动 atmx 文件?



有人可以告诉我为什么我执行 atmx 文件的代码行不起作用吗? 打开IE浏览器后,代码不会更进一步:(

try
{
switch (status)
{
case true:
IWebDriver driver = new InternetExplorerDriver();
driver.Navigate().GoToUrl(@"http://www.rpachallenge.com/");
Console.WriteLine("get ATMX file...........");                     
string getATMX = String.Format("C:\Users\{0}\Desktop\VS Test Environment\Testing.atmx", Environment.UserName);
Process.Start(getATMX);   
SqlConnection connect = new SqlConnection();
connect.Open();
SqlCommand 

ATMX文件从SQL获取信息并填写 rpachallenge.com 上的字段,捕获最终结果,然后保存在SQL中。

.atmx文件不是可执行文件本身,而是由Automation Anywhere运行时(AA.玩家.exe(代替。 您需要确保"AA.Player.exe"已安装,并且是您尝试执行的计算机上扩展名为".atmx"的文件的注册应用程序。希望有帮助。

Atmx 文件在 AAPlayer.exe上运行,如果您安装了 Automation Anywhere,您可以通过使用 atmx 文件路径调用 AAPlayer.exe 来执行 ATMX。

Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "C:\Program Files (x86)\Automation Anywhere\Enterprise\Client\AAPlayer.exe";
p.StartInfo.Arguments = "/fD:\bots\mybot.atmx";
p.Start();

相关内容

  • 没有找到相关文章

最新更新