使用Java使用Selenium WebDriver捕获浏览器日志

2022-08-31 13:16:24

有没有办法在使用Selenium运行自动测试用例时捕获浏览器日志?我发现了一篇关于如何在Selenium中捕获JavaScript错误的文章。但这只适用于Firefox,仅适用于错误。我想获取所有控制台日志。


答案 1

我假设它是以下几行的东西:

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.logging.LogEntries;
import org.openqa.selenium.logging.LogEntry;
import org.openqa.selenium.logging.LogType;
import org.openqa.selenium.logging.LoggingPreferences;
import org.openqa.selenium.remote.CapabilityType;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;

public class ChromeConsoleLogging {
    private WebDriver driver;


    @BeforeMethod
    public void setUp() {
        System.setProperty("webdriver.chrome.driver", "c:\\path\\to\\chromedriver.exe");        
        DesiredCapabilities caps = DesiredCapabilities.chrome();
        LoggingPreferences logPrefs = new LoggingPreferences();
        logPrefs.enable(LogType.BROWSER, Level.ALL);
        caps.setCapability(CapabilityType.LOGGING_PREFS, logPrefs);
        driver = new ChromeDriver(caps);
    }

    @AfterMethod
    public void tearDown() {
        driver.quit();
    }

    public void analyzeLog() {
        LogEntries logEntries = driver.manage().logs().get(LogType.BROWSER);
        for (LogEntry entry : logEntries) {
            System.out.println(new Date(entry.getTimestamp()) + " " + entry.getLevel() + " " + entry.getMessage());
            //do something useful with the data
        }
    }

    @Test
    public void testMethod() {
        driver.get("http://mypage.com");
        //do something on page
        analyzeLog();
    }
}

来源 : 获取 chrome 的控制台日志


答案 2

以更简洁的方式,您可以执行以下操作:

LogEntries logs = driver.manage().logs().get(LogType.BROWSER);

对我来说,它非常适合在控制台中捕获JS错误。然后,您可以为其大小添加一些验证。例如,如果> 0,则添加一些错误输出。


推荐