当我运行我的应用程序时,java总是写这样的东西:
Starting ChromeDriver 2.42.591088 (7b2b2dca23cca0862f674758c9a3933e685c27d5) on port 19943
Only local connections are allowed.
сен 27, 2018 11:18:11 PM org.openqa.selenium.remote.ProtocolHandshake createSession
INFO: Detected dialect: OSS
我该如何预防?我现在不需要它。
您提到的这些日志是默认的ChromeDriver启动日志。由于在创建会话之前不会配置日志级别,因此您无法控制这些日志的生成。
接下来,在测试执行期间要查看较少的日志,您只需将 --silent参数传递给chromedriver 服务器,如下所示:
-
代码块:
import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; public class A_Chrome_General { public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "C:\Utility\BrowserDrivers\chromedriver.exe"); System.setProperty("webdriver.chrome.silentLogging", "true"); WebDriver driver = new ChromeDriver(); driver.get("https://stackoverflow.com"); System.out.println("Page Title is : "+driver.getTitle()); driver.quit(); } }
参考资料
您可以在以下位置找到一些相关的详细讨论:
- Selenium Python生成的包含cookie横幅.js信息的块输出