问题
I try to make hidden FirefoxDriver. According to my research I must use PhantomJSDriver but when I use PhantomJSDriver driver.FindElement statement no longer does not work.
var options = new PhantomJSOptions();
options.AddAdditionalCapability("phantomjs.page.settings.userAgent",
"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/40.0.2214.94 Safari/537.36");
PhantomJSOptions p = new PhantomJSOptions();
var service = PhantomJSDriverService.CreateDefaultService();
service.SslProtocol = "any";
service.ProxyType = "http";
service.WebSecurity = false;
service.IgnoreSslErrors = true;
var driver = new PhantomJSDriver(service, options);
driver.Navigate().GoToUrl("https://www.google.com.tr/");
Thread.Sleep(5000);
driver.FindElement(By.XPath("//*[@id='lst-ib']")).SendKeys("edd");
string s = driver.Url;
Console.WriteLine(s);
Error message:
An unhandled exception of type 'OpenQA.Selenium.NoSuchElementException' occurred in WebDriver.dll
Additional information: {"errorMessage":"Unable to find element with xpath '//[@id='_fZl']/span/svg/path'","request":{"headers":{"Accept":"application/json, image/png","Connection":"Close","Content-Length":"57","Content-Type":"application/json;charset=utf-8","Host":"localhost:50454"},"httpVersion":"1.1","method":"POST","post":"{\"using\":\"xpath\",\"value\":\"//[@id='_fZl']/span/svg/path\"}","url":"/element","urlParsed":{"anchor":"","query":"","file":"element","directory":"/","path":"/element","relative":"/element","port":"","host":"","password":"","user":"","userInfo":"","authority":"","protocol":"","source":"/element","queryKey":{},"chunks":["element"]},"urlOriginal":"/session/feab13f0-720f-11e7-80b3-452aee308158/element"}}
Is there any another way for hiding FirefoxDriver? Could you help me please?
回答1:
I solved it. First of all We can use PhantomJS without showing its console by this code:
IWebDriver driver;
var driverService = PhantomJSDriverService.CreateDefaultService();
driverService.HideCommandPromptWindow = true;
driver = new PhantomJSDriver(driverService);
Second for the error that I mentioned. Google return different HTML pages for browsers so the Id or Xpath in PhantomJS browser will be different from that I export it when I was opening Firefox. When I used
string html=driver.PageSource;
to know what the correct XPath or Id, findElement functiom is working well.
For example: For the Google site results The first link's XPath in FirefoxDriver is
"//*[@id='rso']/div/div/div[1]/div/div/h3/a"
The first link's XPath in PhantomJSDriver is
"//*[@id='ires']//ol/div[1]/h3/a"
回答2:
Since version 55+ for Linux and 56+ for Windows & OSX, Firefox supports the -headless command line option. It shall be used like this:
o = selenium.webdriver.FirefoxOptions()
o.set_headless()
driver=selenium.webdriver.Firefox(options=o)
The corresponding code in C# would be:
var o = new FirefoxOptions()
o.AddArgument('-headless')
var driver = new FirefoxDriver(o)
Because the .NET wrapper doesn't support the .headless property.
回答3:
There is no way to hide FirefoxDriver per se. You could run it on a virtual machine and minimize the vm window but that's not practical for most people.
Let's take a look at your real problem though. It looks like Google is assigning the id of the search box with js to prevent scraping since it's against their terms of service.
You have a couple options here:
1) locate the element using the name 'q' since it's named that regardless of phantomjs or firefox.
2) just go directly to the search results page: https://www.google.com.tr/search?q=edd
来源:https://stackoverflow.com/questions/45233065/how-to-hide-firefoxdriver-using-selenium-without-findelement-function-error-in