blob: 6e6699b8f6d419ae3428e965712e893a2c012bf3 [file] [log] [blame]
// Copyright 2019 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.
(async function() {
TestRunner.addResult('Tests accessibility in Network conditions view using the axe-core linter.');
await TestRunner.loadModule('axe_core_test_runner');
const view = 'network.config';
await UI.viewManager.showView(view);
const widget = await UI.viewManager.view(view).widget();
await AxeCoreTestRunner.runValidation(widget.element);
TestRunner.completeTest();
})();