Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7556)

Unified Diff: chrome/test/data/webui/settings/reset_page_test.js

Issue 1911943002: MD Settings: Tweak "View reported settings" UI in reset settings profile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/webui/settings/reset_page_test.js
diff --git a/chrome/test/data/webui/settings/reset_page_test.js b/chrome/test/data/webui/settings/reset_page_test.js
index dd21beabcd7b2876978b0a6a4f27e7a0ccde89ed..7847384db4cb563d71837bf5c4bd7ef164daa4bd 100644
--- a/chrome/test/data/webui/settings/reset_page_test.js
+++ b/chrome/test/data/webui/settings/reset_page_test.js
@@ -192,9 +192,9 @@ cr.define('settings_reset_page', function() {
var dialog = resetPage.$$('settings-reset-profile-dialog');
assertTrue(!!dialog);
- var showReportedSettingsButton = dialog.$$('iron-icon');
- assertTrue(!!showReportedSettingsButton);
- MockInteractions.tap(showReportedSettingsButton);
+ var showReportedSettingsLink = dialog.$$('.footer a');
+ assertTrue(!!showReportedSettingsLink);
+ MockInteractions.tap(showReportedSettingsLink);
return browserProxy.whenCalled('getReportedSettings').then(function() {
MockInteractions.tap(dialog.$.reset);

Powered by Google App Engine
This is Rietveld 408576698