Thank you for replying.
I tried out the client add-on. Am i correct in saying that it only finds buttons, cookies, forms, inputs and links? If so, then it was not able to find my tabs, due to the HTML being divs, rather than buttons.
The website I want to use the ajax spider with, is also a single page application(SPA). Would that potentially be a reason for my problem?
The following code is the general gist of the HTML of the navbar for the tabs:
<section aria-label="navigation menu">
<ul class="MuiList-root MuiList-padding">
<div class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button" tabindex="0" role="button"></div>
<div class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button" tabindex="0" role="button"></div>
<div class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button" tabindex="0" role="button"></div>
<div class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button" tabindex="0" role="button"></div>
<div class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button" tabindex="0" role="button"></div>
<div class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button" tabindex="0" role="button"></div>
<div class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button" tabindex="0" role="button"></div>
</ul>
</section>