blob: 59800bba438dbd6d19dd8b84f18b9716288d56ef [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stddef.h>
#include <memory>
#include <utility>
#include "base/bind.h"
#include "base/callback_helpers.h"
#include "base/command_line.h"
#include "base/json/json_reader.h"
#include "base/system/sys_info.h"
#include "base/test/scoped_feature_list.h"
#include "base/values.h"
#include "build/build_config.h"
#include "content/browser/devtools/protocol/devtools_protocol_test_support.h"
#include "content/public/common/content_switches.h"
#include "content/public/common/url_constants.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_browser_test_utils.h"
namespace content {
IN_PROC_BROWSER_TEST_F(DevToolsProtocolTest, VisualDebuggerTest) {
set_agent_host_can_close();
GURL url = GURL("data:text/html,<body></body>");
NavigateToURLBlockUntilNavigationsComplete(shell(), url, 1);
Attach();
SendCommand("VisualDebugger.startStream", nullptr);
WaitForNotification("VisualDebugger.frameResponse", true);
std::unique_ptr<base::DictionaryValue> command_params =
std::make_unique<base::DictionaryValue>();
auto filter_param =
std::string(R"({"filters":[{"selector":{"anno":""},"active":true}]})");
command_params->SetString("json", filter_param);
SendCommand("VisualDebugger.filterStream", std::move(command_params));
SendCommand("VisualDebugger.stopStream", nullptr);
}
} // namespace content