diff --git a/chrome/test/data/webui/chromeos/os_feedback_ui/help_content_test.js b/chrome/test/data/webui/chromeos/os_feedback_ui/help_content_test.js
index 8672f334e611c3..959994e2f45f2c 100644
--- a/chrome/test/data/webui/chromeos/os_feedback_ui/help_content_test.js
+++ b/chrome/test/data/webui/chromeos/os_feedback_ui/help_content_test.js
@@ -102,7 +102,7 @@ export function helpContentTestSuite() {
/* isPopularContent= */ true);
// Verify the title is in the helpContentElement.
- const title = getElement('#helpContentLabel');
+ const title = getElement('.help-content-label');
assertTrue(!!title);
assertEquals('Top help content', title.textContent);
@@ -119,7 +119,7 @@ export function helpContentTestSuite() {
/* isPopularContent =*/ false);
// Verify the title is in the helpContentElement.
- const title = getElement('#helpContentLabel');
+ const title = getElement('.help-content-label');
assertTrue(!!title);
assertEquals('Suggested help content', title.textContent);
@@ -175,7 +175,7 @@ export function helpContentTestSuite() {
/* isPopularContent= */ true);
// Verify the title is in the helpContentElement.
- const title = getElement('#helpContentLabel');
+ const title = getElement('.help-content-label');
assertTrue(!!title);
assertEquals(
'No suggested content. See top help content.', title.textContent);