I'm trying find a list of data on a webpage, but the list is hidden and therefore I need to navigate the page. Whatever I try, I am unable to find a hyperlink tag to then click on it.
Does anyone know how to navigate to the following hyperlink and click:
    <li>
    <a href="#" class="accordion-toggle">
    == $0
        <span class="fa fa-briefcase">::before</span>
        <span class="sidebar-title">Batches</span>
        <span class="caret">::after</span>
        ::after
    </a>
    <ul class="nav sub-nav">::before
        <li class="active">
            <a href="#" aria-expanded="true">
                <span class="fa fa-table"></span>
                "Lijst"
                ::after
            </a>
        </li>
        ::after
    </ul>
</li>
I cannot refer to the page because you need login, but there are four hyperlinks with the same href="#" and class="accordion-toggle". Therefore I'm interested in finding out how to select and click this.
