Im using Ghost Driver (PhantomJS) in my C# project. I have a question. Selenium has PhantomJSWebElement and PhantomJSDriver. Im creating PhantomJSDriver
PhantomJSDriverService service = PhantomJSDriverService.CreateDefaultService();
service.IgnoreSslErrors = true;
service.LoadImages = false;
service.Start();
PhantomJSDriver ghostDriver = new PhantomJSDriver(service);
And then trying to find elements by xpath
List<string> retVal = new List<string>();
var aElements = ghostDriver.FindElementsByXPath("//div[@id='menu']//a[@href]");
foreach(PhantomJSWebElement link in aElements)
{
try
{
retVal.Add(link.GetAttribute("href"));
}
catch (Exception)
{
continue;
}
}
So i have an error while casting IWebElemet
to PhantomJSWebElement
.
PhantomJSWebElement el = (PhantomJSWebElement)link;
also not works (throwing casting exception). So the question is, how to get PhantomJSWebElement by PhantomJSDriver returns only IWebElement (or a collection of them) while finding.
In general, you should not be using the browser-specific classes when using the .NET bindings. Instead, you should be coding to the interfaces that you expect. This allows you to substitute in different implementations as needed. Your code would look something like this:
You should also note that there is every possibility that the class documentation is incorrect. Knowing the source code for the language bindings, the
PhantomJSWebElement
class is never actually instantiated anywhere. I believe what you're actually getting back from yourFindElements()
call areRemoteWebElements
, so attempting to cast them down the inheritance hierarchy to the more specific subclass is doomed to failure.