Use WAVE to get a list of all of the landmarks on a specific page. You should repeat this procedure on each unique page type on the site or application.
Landmark types which duplicate more than once should be uniquely labeled. This is generally achieved with aria-label or aria-labelledby. Use the Inspector of your web browser to determine if landmarks have labels.
As a reminder, landmark elements are defined as
Banner - <header> tag or an attribute of role="banner" on a container element.
Complementary - <aside> tag or an attribute of role="complementary" on a container element.
Contentinfo - <footer> tag or an attribute of role="contentinfo" on a container element.
Form - <form> tag with an ARIA label or an attribute of role="form" on a container element.
Main - <main> tag or an attribute of role="main" on a container element.
Navigation - <nav> tag or an attribute of role="navigation" on a container element.
Region - <section> tag with an ARIA label or an attribute of role="region" on a container element with an ARIA label.
Search - An attribute of role="search" on a container element.