本文整理汇总了C#中OpenQA.Selenium.Appium.Android.AndroidDriver.FindElementsByXPath方法的典型用法代码示例。如果您正苦于以下问题:C# AndroidDriver.FindElementsByXPath方法的具体用法?C# AndroidDriver.FindElementsByXPath怎么用?C# AndroidDriver.FindElementsByXPath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OpenQA.Selenium.Appium.Android.AndroidDriver
的用法示例。
在下文中一共展示了AndroidDriver.FindElementsByXPath方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
//.........这里部分代码省略.........
hybirdCapabilities.SetCapability(MobileCapabilityType.PlatformVersion, "5.1");
//if don't want to launch the app in device directly, need set the package and activity
//otherwise, need specifies the absolute app folder
hybirdCapabilities.SetCapability(MobileCapabilityType.App, "D:\\AppFolder\\App.apk");
AppiumDriver<IWebElement> hybirdDriver = new AndroidDriver<IWebElement>(
new Uri("http://127.0.0.1:4723/wd/hub"), hybirdCapabilities);
//Specifies the amount of time the driver should wait when searching for an
// element if it is not immediately present
hybirdDriver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(10));
//Get all contexts of the app, check whether include webview
IList<string> driverContexts = hybirdDriver.Contexts;
Console.WriteLine("Out put all contexts of the driver");
foreach(string s in driverContexts)
{
Console.WriteLine(s);
}
//Set the context as "WEBVIEW*", then can locate the element as in browser. (can use the API of the Selenium)
hybirdDriver.Context = driverContexts.Last();
//Set the timeout again for webview driver.
hybirdDriver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(10));
//Get the Login elements
IWebElement emailElement = hybirdDriver.FindElement(By.Id("email"));
IWebElement passwordElement = hybirdDriver.FindElement(By.Id("password"));
IWebElement loginElement = hybirdDriver.FindElementById("login-button");
//Set the login information
emailElement.SendKeys("[email protected]");
passwordElement.SendKeys("testing");
IWebElement emailtElementXpath = hybirdDriver.FindElementByXPath("//input[@ng-model=\"login.user.email\"]");
loginElement.Click();
//#######Test Case3
IWebElement friends = (IWebElement)hybirdDriver.FindElement(By.XPath("//div[@class=\"nav-bar-block\" and @nav-bar=\"active\" ]//a[@ui-sref=\"p.main.friends\"]"));
friends.Click();
IWebElement search = (IWebElement)hybirdDriver.FindElementById("search");
search.SendKeys("jack1");
//Wait for 1 second for the search result
System.Threading.Thread.Sleep(1000);
IList<IWebElement> searchResultList = (IList<IWebElement>)hybirdDriver.FindElementsByXPath("//div[@class=\"friend-information auto-truncate ng-binding\"]");
string searchedPerson1 = searchResultList[0].Text;
if (searchedPerson1 != "jack1 rose1")
{
Console.WriteLine("Test Case3 failed");
}
else
{
Console.WriteLine("Test Case3 pass");
}
//#######Test Case4
//Check the search result of "rose"
search.Clear();
search.SendKeys("rose");
//Wait for 1 second for the search result
System.Threading.Thread.Sleep(1000);
try
{
IList<IWebElement> searchResultList2 = (IList<IWebElement>)hybirdDriver.FindElementsByXPath("//div[@class=\"friend-information auto-truncate ng-binding\"]");
//IWebElement searchResult_2 = (IWebElement)hybirdDriver.FindElementByXPath("//div[@class=\"search-results\"]/div[3]//div[@class=\"friend-information auto-truncate ng-binding\"]");
string searchedPerson2 = searchResultList2[1].Text;
if (searchedPerson2 != "jack1 rose1")
{
Console.WriteLine("Test Case4 failed");
}
else
{
Console.WriteLine("Test Case4 pass");
}
}
catch(Exception ex)
{
Console.WriteLine("Element can not be located!, information is:");
Console.WriteLine(ex.Message);
Console.WriteLine("Test Case4 failed");
}
hybirdDriver.Context = driverContexts.First();
hybirdDriver.Dispose();
}
#endregion
Console.ReadKey();
}