3

Appium 不会将测试结果(使用 adb 模拟器执行的 UI 测试)记录到调试输出 (Deug.WriteLine)。

根据文档,可以使用以下行获取测试日志

ILogs logs = driver.Manage().Logs;

但是,Appium 有不同的日志类型:

  • 浏览器
  • 客户
  • 司机
  • 探查器
  • 服务器

我使用以下代码尝试了每种日志类型。但是通过执行我没有得到任何结果,并且测试(我放置代码的地方)会失败。有没有人有这个问题的解决方案?

ReadOnlyCollection<LogEntry> logs = _driver.Manage().Logs.GetLog(LogType.Browser);
//  ReadOnlyCollection<LogEntry> logs = _driver.Manage().Logs.GetLog(LogType.Client);
//  ReadOnlyCollection<LogEntry> logs = _driver.Manage().Logs.GetLog(LogType.Driver);
//  ReadOnlyCollection<LogEntry> logs = _driver.Manage().Logs.GetLog(LogType.Profiler);
//  ReadOnlyCollection<LogEntry> logs = _driver.Manage().Logs.GetLog(LogType.Server);

foreach (var log in logs)
{
    Debug.WriteLine("Time: " + log.Timestamp);
    Debug.WriteLine("Message: " + log.Message);
    Debug.WriteLine("Level: " + log.Level);
}
4

2 回答 2

1

我只是想通了。

  1. 查这篇文章先 放宽安全 AppiumService

  2. 获取日志类型

        IReadOnlyCollection<string> logTypes = driver.Manage().Logs.AvailableLogTypes;
        foreach (string logType in logTypes)
        {
            Console.WriteLine(logType);
            //logcat
            //bugreport
            //server
        }
    
  3. 打印日志

    public static void PrintLogs(string logType)
    {
        try
        {
            ILogs _logs = driver.Manage().Logs;
            var browserLogs = _logs.GetLog(logType);
            if (browserLogs.Count > 0)
            {
                foreach (var log in browserLogs)
                {
                    //log the message in a file
                    Console.WriteLine(log);
                }
            }
        }
        catch(Exception e)
        {
            //There are no log types present
            Console.WriteLine(e.ToString());
        }
    

图片:C#控制台打印appium日志

于 2020-02-14T07:21:33.587 回答
-1

在java中,我使用以下代码进行操作:

List<LogEntry> logEntries = driver.manage().logs().get("logcat").getAll();
for (LogEntry logEntry : logEntries) {
        System.out.println(logEntry);
}

不确定此方法是否适用于 C#。请试一试

List<LogEntry> logEntries = _driver.Manage().Logs().Get("logcat").GetAll();
于 2019-03-26T07:51:19.720 回答