在自动执行的桌面应用程序中达到某个特定点,我需要单击链接并继续在浏览器中自动执行。该链接会自动转到Internet Explorer。(建议您将其复制并粘贴到chrome中)。我需要知道如何从桌面切换到Web视图,自动执行Web视图并返回到桌面视图。
到目前为止,这是我发现的最能解决问题的东西。我是C#的新手,所以我知道我想做什么的理论,只是不知道如何实现。 http://appium.io/docs/en/writing-running-appium/web/hybrid/。我到目前为止已经将上下文记录到我的输出中。我还无法设置或重置它。
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Threading;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using OpenQA.Selenium.Appium;
using OpenQA.Selenium.Appium.Windows;
using OpenQA.Selenium.Remote;
namespace UnitTestProject2
{
[TestClass]
public class GoldTrakPCTest
{
[TestMethod]
public void TestMethod1()
{
AppiumOptions options = new AppiumOptions();
options.AddAdditionalCapability("deviceName", "WindowsPC");
options.AddAdditionalCapability("platformName", "Windows");
options.AddAdditionalCapability("app", "XXXX -Path to desktop app");
WindowsDriver<WindowsElement> windowsDriver = new WindowsDriver<WindowsElement>(new Uri("http://127.0.0.1:4723/"), options);
Thread.Sleep(1500);
windowsDriver.FindElementByAccessibilityId("1006").SendKeys("Username");
windowsDriver.FindElementByAccessibilityId("1003").SendKeys("Password");
windowsDriver.FindElementByAccessibilityId("1001").SendKeys("354 - B - Mariner");
windowsDriver.FindElementByAccessibilityId("1").Click();
var myVar = windowsDriver.FindElementByAccessibilityId("59393");
Thread.Sleep(4200);
//Trace.WriteLine(windowsDriver.FindElementByName("WILLY WONKA"));
windowsDriver.FindElementByName("WILLY WONKA").Click();
Thread.Sleep(1000);
windowsDriver.FindElementByAccessibilityId("1310").Click();
Thread.Sleep(4000);
windowsDriver.FindElementByName("Documents").Click();
Thread.Sleep(4000);
windowsDriver.FindElementByAccessibilityId("1011").Click();
windowsDriver.FindElementByAccessibilityId("1011").Click();
windowsDriver.FindElementByName("Doc Set - WI Esign Documents").Click();
windowsDriver.FindElementByAccessibilityId("4750").Click();
Thread.Sleep(4000);
windowsDriver.FindElementByName("OK").Click();
windowsDriver.FindElementByAccessibilityId("2034").Click();
Thread.Sleep(4000);
string Context = windowsDriver.Context;
Trace.WriteLine(Context);
/*List<string> AllContexts = new List<string>();
foreach (var context in (windowsDriver.Contexts))
{
AllContexts.Add(context);
Trace.WriteLine(context);
}*/
//Trace.WriteLine(AllContexts, "Hello");
//options.AddAdditionalCapability("")
//windowsDriver.FindElementByName("WILLY WONKA").Click();
//windowsDriver.FindElementByName("Next").Click();
Thread.Sleep(6000);
//windowsDriver.Close();
}
}
}
我需要知道如何更改上下文以及是否可以在本机Windows桌面应用程序和浏览器之间进行切换以及如何执行此操作。
答案 0 :(得分:0)
有可能。我有2个桌面应用程序和1个Web应用程序同时运行。但是,我有一个关于“链接自动转到Internet Explorer的问题。(建议您将其复制并粘贴到chrome中)”。
是因为Internet Explorer是Windows中的默认资源管理器吗?
在应用之间切换上下文。
一旦您单击打开Web的Windows元素(IE或chrome),您将需要创建Webdriver实例(IE / chrome)并将其附加到浏览器进程中
一种测试初始化方法,可以启动/附加到现有会话: How to use/attach an existing browser using Selenium?