我是Selenium的新手,我需要在Windows Phone上使用Selenium WebDriver。我点这个链接https://winphonewebdriver.codeplex.com/。
当我点击" StartWindowsPhoneDriver.cmd"我的模拟器在空白页面上工作得很好,但我不知道如何插入C#代码来控制它。
任何人都可以帮忙并给我一个例子(或一个例子的链接)吗?
致以最诚挚的问候,
Xialuna
答案 0 :(得分:0)
您可以将它放在MainPage.xaml.cs构造函数中:
RemoteWebDriver driver = RemoteWebDriver(new Uri("http://______:______"), DesiredCapabilities.InternetExplorer());
driver.Navigate().GoToUrl("https://winphonewebdriver.codeplex.com/");
我现在读到的是你必须从控制台中打印的 StartWindowsPhoneDriver.cmd 获取IP地址。在初始化RemoteWebDriver时放置它并且必须工作。
问候!