获取chrome的控制台日志

Posted

技术标签:

【中文标题】获取chrome的控制台日志【英文标题】:Get chrome's console log 【发布时间】:2013-08-18 03:40:32 【问题描述】:

我想构建一个自动化测试,所以我必须知道chrome的控制台中出现的错误。

有一个选项可以获取控制台中出现的错误行吗?

要查看控制台:右键单击页面中的某处,单击“检查元素”,然后转到“控制台”。

【问题讨论】:

这有帮助吗? ***.com/questions/5056737/… 为什么将基于 Java 的答案标记为正确答案,而不是 C# 解决方案? 【参考方案1】:

我不懂 C#,但这里有 Java 代码可以完成这项工作,我希望你能把它翻译成 C#

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();
    

注意上面代码中的setUp方法。我们使用 LoggingPreferences 对象来启用日志记录。有几种类型的日志,但如果您想跟踪控制台错误,那么 LogType.BROWSER 是您应该使用的一种。然后我们将该对象传递给 DesiredCapabilities 并进一步传递给 ChromeDriver 构造函数,瞧——我们有一个启用了日志记录的 ChromeDriver 实例。

在页面上执行一些操作后,我们调用 analyzeLog() 方法。在这里,我们简单地提取日志并遍历其条目。您可以在此处放置断言或进行任何其他您想要的报告。

我的灵感来自 this code by Michael Klepikov,它解释了如何从 ChromeDriver 中提取性能日志。

【讨论】:

虽然这是 Java 的正确答案,但正如您所指出的,它不是 C#,并且一旦“翻译”就不适用于 C#,因为 Selenium 的 .NET API 不 支持日志。例如,当您执行Driver.Manage() 时,.Logs() 将不可用。无论如何+1,因为它显示了解决方案。 在 C# 中仍然没有办法获取浏览器日志吗? 我不知道为什么issue 6832 仍然打开,但现在.Logs 有效。我们有 WebDriver 2.21 版,可能 因此,您的想法和代码如下:var logs = driver.Manage().Logs.GetLog(LogType.Browser); 我仍然无法获取日志。请问这个问题over here好吗?提前致谢!【参考方案2】:

您可以通过这种方式获取日志:

Driver().Manage().Logs.GetLog();

通过指定你感兴趣的日志可以得到浏览器日志,即:

Driver().Manage().Logs.GetLog(LogType.Browser);

还记得相应地设置您的驱动程序:

ChromeOptions options = new ChromeOptions();
options.SetLoggingPreference(LogType.Browser, LogLevel.All);
driver = new ChromeDriver("path to driver", options);

【讨论】:

嗨!它不适合我,你能请check my issue吗?谢谢! @BlackHat 抱歉回复晚了!我用你的帖子中的信息更新了我的答案。 我在启动驱动程序时不必设置日志记录机制,Driver().Manage().Logs.GetLog(LogType.Browser); 让我的 LogEntries 包含错误 这不正是这里的意图吗? @Tarun【参考方案3】:

这是用于从 chrome 记录浏览器日志的 c# 代码。

private void CheckLogs()
    
        List<LogEntry> logs = Driver.Manage().Logs.GetLog(LogType.Browser).ToList();
        foreach (LogEntry log in logs)
        
            Log(log.Message);
        
    

这是我的实际日志代码:

        public void Log(string value, params object[] values)
    
        // allow indenting
        if (!String.IsNullOrEmpty(value) && value.Length > 0 && value.Substring(0, 1) != "*")
        
            value = "      " + value;
        

        // write the log
        Console.WriteLine(String.Format(value, values));
    

【讨论】:

【参考方案4】:

根据issue 6832,尚未为 C# 绑定实现日志记录。因此,目前可能还没有一种简单的方法可以让这项工作正常进行。

【讨论】:

据我所知 - 这应该是答案。没有(据我所知)使用 C# 语言在 Selenium 中本地获取浏览器日志的方法。一些提到的 cmets 也可以从其他语言绑定中删除。我很乐意提供有关此的更新信息,但我认为最新的信息是 - 你不会拥有它。【参考方案5】:

这是使用 C#、Specflow 和 Selenium 4.0.0-alpha05 获取 Chrome 日志的解决方案。 请注意,相同的代码不适用于 Selenium 3.141.0。

 [AfterScenario]
    public void AfterScenario(ScenarioContext context)
    
        if (context.TestError != null)
                 
            GetChromeLogs(context); //Chrome logs are taken only if test fails
        
        Driver.Quit();
    

    private void GetChromeLogs()
    
        var chromeLogs = Driver.Manage().Logs.GetLog(LogType.Browser).ToList();            
    

【讨论】:

【参考方案6】:
public void Test_DetectMissingFilesToLoadWebpage()
    
        try
        
            List<LogEntry> logs = driver.Manage().Logs.GetLog(LogType.Browser).ToList();
            foreach (LogEntry log in logs)
            
                while(logs.Count > 0)
                
                    String logInfo = log.ToString();
                    if (log.Message.Contains("Failed to load resource: the server responded with a status of 404 (Not Found)"))
                    
                        Assert.Fail();
                    
                    else
                    
                        Assert.Pass();
                    
                
            
        
        catch (NoSuchElementException e)
        
            test.Fail(e.StackTrace);
        
    

您可以在 C# 中执行类似的操作。这是一个完整的测试用例。然后将控制台输出打印为字符串,即报告中的 logInfo。出于某种原因,上述解决方案中的 Log(log.Message) 给了我构建错误。所以,我替换了它。

【讨论】:

【参考方案7】:

与 Chrome 控制台日志的 C# 绑定终于在 Selenium 4.0.0-alpha05 中可用。 Selenium 3.141.0 及之前版本不支持。

在实例化新的 ChromeDriver 对象之前,在 ChromeOptions 对象中设置日志记录首选项并将其传递给 ChromeDriver:

ChromeOptions options = new ChromeOptions();   
options.SetLoggingPreference(LogType.Browser, LogLevel.All);
ChromeDriver driver = new ChromeDriver(options);

然后,将 Chrome 控制台日志写入平面文件:

    public void WriteConsoleErrors()
    
        string strPath = "C:\\ConsoleErrors.txt";
        if (!File.Exists(strPath))
        
            File.Create(strPath).Dispose();
        

        using (StreamWriter sw = File.AppendText(strPath))
        
            var entries = driver.Manage().Logs.GetLog(LogType.Browser);
            foreach (var entry in entries)
            
                sw.WriteLine(entry.ToString());
            
        
    

【讨论】:

ChromeOptions 在 java 中似乎没有 SetLoggingPreference() 方法【参考方案8】:
driver.manage().logs().get("browser")

获取打印在控制台上的所有日志。我能够获得除违规之外的所有日志。请看这里Chrome Console logs not printing Violations

【讨论】:

以上是关于获取chrome的控制台日志的主要内容,如果未能解决你的问题,请参考以下文章

Console.log 消息未显示在 Chrome 的 javascript 控制台中?

如何从 Chrome 的 Javascript 控制台获取输入?

尝试使用 chrome 控制台 javascript/jquery 获取内部元素

Chrome 扩展:获取当前控制台以发送到服务器

ReactJS 应用程序无法使用 REST API 调用获取数据

无法使用 thymeleaf 从 mysql 数据库加载 chrome 中的数据,但在控制台中获取查询