- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试在java中隐藏控制台和GhostDriver的日志...
- Windows 7.
- JDK is in 1.7.0_75 version.
- PhantomJS 1.9.7 is include with it path.
- GhostDriver 1.1.0 is include in an Eclipse Java SE Project.
- Selenium 2.43.1 is include in an Eclipse Java SE Project.
有办法吗?
我在 cli_args 中尝试了“--webdriver-loglevel=OFF”和“--webdriver-loglevel=NONE”,但它不起作用...
我尝试了 java -jar myJar.jar > myFile.txt 但它不起作用...
有没有其他方法或者可能是错误的?
代码示例:
WebDriver driver;
DesiredCapabilities dCaps;
dCaps = new DesiredCapabilities();
dCaps.setJavascriptEnabled(true);
dCaps.setCapability("takesScreenshot", true);
dCaps.setCapability(PhantomJSDriverService.PHANTOMJS_CLI_ARGS, new String[] {"--ignore-ssl-errors=true", "--ssl-protocol=tlsv1", "--web-security=false", "--webdriver-loglevel=OFF", "--webdriver-loglevel=NONE"});
dCaps.setCapability(PhantomJSDriverService.PHANTOMJS_EXECUTABLE_PATH_PROPERTY, phantom);
driver = new PhantomJSDriver(dCaps);
和日志(带有 VM 参数):
mai 18, 2015 2:09:48 PM org.openqa.selenium.phantomjs.PhantomJSDriverService <init>
INFOS: executable: C:\Users\212428788\workspace\BigBrowser\phantomjs-1.9.7-windows\phantomjs.exe
mai 18, 2015 2:09:48 PM org.openqa.selenium.phantomjs.PhantomJSDriverService <init>
INFOS: port: 48921
mai 18, 2015 2:09:48 PM org.openqa.selenium.phantomjs.PhantomJSDriverService <init>
INFOS: arguments: [--ignore-ssl-errors=true, --ssl-protocol=tlsv1, --web-security=false, --webdriver-loglevel=OFF, --webdriver-loglevel=NONE, --webdriver=48921, --webdriver-logfile=C:\Users\212428788\workspace\BigBrowser\phantomjsdriver.log]
mai 18, 2015 2:09:48 PM org.openqa.selenium.phantomjs.PhantomJSDriverService <init>
INFOS: environment: {}
PhantomJS is launching GhostDriver...
非常感谢。
最佳答案
查看以下步骤是否适合您(来自 this 主题的回答):
像这样创建一个字符串数组:
String[] phantomArgs = new String[] {
"--webdriver-loglevel=NONE"
};
将以下行添加到您的DesiredCapabilities
:
capabilities.setCapability(PhantomJSDriverService.PHANTOMJS_CLI_ARGS, phantomArgs);
我对 PhantomJSDriver 的配置是这样的:
//set binary path of phantomJS driver
DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setJavascriptEnabled(true);
capabilities.setCapability(PhantomJSDriverService.PHANTOMJS_EXECUTABLE_PATH_PROPERTY, "drivers/phantomjs.exe");
capabilities.setCapability(PhantomJSDriverService.PHANTOMJS_PAGE_SETTINGS_PREFIX,"Y");
capabilities.setCapability(PhantomJSDriverService.PHANTOMJS_CLI_ARGS, phantomArgs);
capabilities.setCapability("phantomjs.page.settings.userAgent", "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:16.0) Gecko/20121026 Firefox/16.0");
//intialize driver and set capabilties
PhantomJSDriver driver = new PhantomJSDriver(capabilities);
右键单击您的项目并选择 Run As->Run Configurations->Arguments 并添加 VM 参数 -Djava.util.logging.config.file=logging。属性
到 VM 参数:
点击应用,然后点击运行
关于Java 和 GhostDriver : Hide Console and Logs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30192319/
我正在尝试使用 phantomjs、ghostdriver 和 Protractor 在我的笔记本电脑上运行 e2e 测试。我运行以下命令: phantomjs --webdriver=5000 gu
我有一个单元测试,当我通过 python manage.py test 运行它时它通过了,但是当我从 PyCharm 中运行它时失败了。 def test_alpha(self): from
问题很简单,但一些上下文可能会有所帮助。 我正在尝试在使用 selenium 和 phantomjs 作为下载器时部署scrapy。但问题是它在尝试部署时一直说权限被拒绝。所以我想改变ghostdri
我正在尝试使用 phantomJS 和 Ghostdriver 截取页面的屏幕截图。 这是我的代码: import java.io.File; import java.net.URL; import
我正在尝试使用 PhantomJS 作为 PHPUnit Selenium 测试的浏览器。 我已将 Selenium 设置为以网格模式运行,并使用 webdriver 启动 phantomjs,并将其
我正在尝试使用 PhantomJS 和 GhostDriver for Java 从 eclipse IDE 运行一个简单的 GoogleSuggest 示例,但是它没有通过 Xpath 找到任何元素
这个问题在这里已经有了答案: Selenium/PhantomJS raises error (4 个答案) 关闭 7 年前。 我正在运行一个包含 selenium 组件的代码,它需要 phanto
在我使用 GhostDriver (PhantomJS) 对 Selenium 进行的第一个非常简单的测试中,测试通过了,但 PhantomJS.exe 没有退出。我在 Windows 7、Phant
我正在使用 PhantomJS 和 Selenium 抓取网站。我的问题是,在检查了大约 50 个 URL 后,我出现了一个错误: selenium.common.exceptions.WebDriv
我在基于 Java 的项目中使用 GhostDriver 作为 WebDriver 实现。我想拍摄页面的快照。默认页面大小有点尴尬,所以我想控制快照的页面大小。但是,我找不到来自谷歌的任何例子。那么,
我已经使用 Selenium 和 PhantomJS 在 Python 中设置了一个简单的网络抓取脚本。我总共有大约 200 个 URL 需要抓取。该脚本起初运行良好,然后在大约 20-30 个 UR
我正在尝试使用 Java、PhantomJS 和 GhostDriver 截取一些 Twitter 页面的屏幕截图,但我一直得到带有模式对话框(注册模式或 cockies 模式)的屏幕截图。 有人可以
很长一段时间以来,我一直试图让 PhantomJS ( 1.9.7 )/GhostDriver 使用一些自定义设置进行初始化,但完全没有成功。我正在使用 wd.js 作为我的 WebDriver 库,
我尝试在java中隐藏控制台和GhostDriver的日志... - Windows 7. - JDK is in 1.7.0_75 version. - PhantomJS 1.9.7 is inc
我想在特定页面的 PhantomJSDriver 中禁用 JavaScript,但是 this link here说这是不可能的,因为“整个 GhostDriver 将变得不可用”。 谁能解释一下,我
我正在使用 PhantomJs Ghostdriver 和 Java 截取一些网页的屏幕截图。我的问题是 PhantomJs 使用主机的语言环境,所以我需要设置默认语言。我找到了如何为 Chrome
问题:GhostDriver API 尚不支持警报处理。目前有一个可接受的解决方法,即将您自己的 javascript 注入(inject)页面,该页面将处理警报并为您存储它的文本。 我在通过 pyt
我目前有一个 Rails 应用程序,它使用 rspec 和 watir-webdriver 进行集成测试。我想在 headless 浏览器中运行我的集成测试(为了速度目的)。由于我的开发是在 mac
我们正在选择我们的 headless 浏览器 驱动程序解决方案,它将是 Selenium WebDriver 的一些实现。 有GhostDriver ,它利用 PhantomJS在一侧的后端和 Htm
如何清除 PhantomJS + GhostDriver + Selenium WebDriver + WebDriver 客户端系统中每个测试的 cookie? 我的测试过程如下: 以集线器角色启动
我是一名优秀的程序员,十分优秀!