以下是我的开发环境的详细信息:
-Visual Studio 2012 Ultimate with Update 4
-Google Chrome版本40.0.2214.94 m
-Windows 7 Professional with 32-bit Operating System
我的Google Chrome浏览器的用户代理字符串是:
Mozilla / 5.0(Windows NT 6.1)AppleWebKit / 537.36(KHTML,与Gecko一样)Chrome / 40.0.2214.94 Safari / 537.36
我的Automated UI测试代码中的C#代码如下:
var options = new PhantomJSOptions();
// Chrome User Agent ( Chrome Version 40.0.2214.94 m )
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");
driver = new OpenQA.Selenium.PhantomJS.PhantomJSDriver(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"..\..\..\packages\PhantomJS.1.9.8\tools\phantomjs"), options);
url = new Uri("http://localhost:2816/");
IWait<IWebDriver> wait = new OpenQA.Selenium.Support.UI.WebDriverWait(driver, TimeSpan.FromSeconds(90.00));
wait.Until(ExpectedConditions.ElementIsClickable( By.XPath("//a[text()='Users']")));
IWebElement btn = waitArg.Until<IWebElement>((d) => {
try{
return d.FindElement( By.XPath("//a[text()='Users']") );
}
catch {
return null;
}
});
btn.Click();
不幸的是,上面的代码很难找到元素。我相信,如果我可以配置我的代码中使用的PhantomJS驱动程序来更接近地模拟我的桌面上的Google Chrome版本40.0.2214.94 m浏览器,那么Automated UI测试代码应该能够在每当时提供更一致和准确的测试结果测试运行。
有人可以建议我是否可以对以下代码进行一些修改,以便更接近地模拟我的Google Chrome版本40.0.2214.94 m浏览器?
var options = new PhantomJSOptions();
// Chrome User Agent ( Chrome Version 40.0.2214.94 m )
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");
driver = new OpenQA.Selenium.PhantomJS.PhantomJSDriver(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"..\..\..\packages\PhantomJS.1.9.8\tools\phantomjs"), options);
在@ artjom-b的帮助下更新答案
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");
var service = PhantomJSDriverService.CreateDefaultService(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"..\..\..\packages\PhantomJS.1.9.8\tools\phantomjs"));
service.SslProtocol = "any";
driver = new PhantomJSDriver(service, options);
url = new Uri("http://localhost:2816/");
// 1280, height: 1024
// @artjom-b strongly recommened that the Driver's Window Size be quite large. Let's set the Window Size to quite large.
driver.Manage().Window.Size = new System.Drawing.Size(1280, 1024); // Size is a type in assembly "System.Drawing"
答案 0 :(得分:6)
PhantomJS是一个独立的(无头)浏览器。您无法配置它,因此它的行为类似于Chrome。在渲染引擎方面,没有什么可配置的。您可以执行一些操作,以便PhantomJS的行为类似于桌面浏览器。
首先要将视口大小设置为大。 PhantomJS默认运行,视口为400x300。 vieport扩展到固定宽度的站点,但对于响应式站点保持较小。根据网站的编写方式,某些元素可能会被隐藏,无法点击 请参阅:Setting screen size in PhantomJS C# being driven by Selenium
要做的第二件事是将用户代理字符串设置为最接近其功能的东西。 PhantomJS 1.x基于QtWebKit的旧分支。据说Chrome 13与它最兼容 为什么这有关系?有些网站使用了一些&#34;实验&#34; JavaScript遇到新的用户代理时。使用旧的/匹配的用户代理字符串,以便这样做的网站不会发送时髦的JavaScript或PhantomJS无法理解的其他奇怪的东西。 Google以此为例做到了这一点 用户代理字符串:
Mozilla / 5.0(Windows NT 6.0)AppleWebKit / 535.1(KHTML,与Gecko一样)Chrome / 13.0.782.41 Safari / 535.1
PhantomJS 1.x默认使用SSLv3,如果服务器不支持此功能(由于POODLE漏洞),则连接失败。使用any
以便PhantomJS接受它理解的所有SSL / TLS连接
请参阅:A: Selenium Webdriver + PhantomJS remains at about:blank for a specific site
PhantomJS 1.x不支持Function.prototype.bind
等。 C#的selenium语言绑定支持通过PhantomJSDriver.ExecutePhantomJS()
执行PhantomJS脚本片段(不是页面脚本),这使得可以运行垫片来为PhantomJS改造一些必要的功能。 commit中提供的相关comments。
有些事情你可以做些什么: