Using Selenium in Python, I want to click on a button with text ‘View Active, but Selenium can’t find it when searching for ‘View Active’. Looking at the code with ‘inspect’ (see below), I see the following for the ‘flex-col’ class containing the button. I can see the button text, but I don’t know how to access it from Selenium
<div class="flex flex-col md:grid md:grid-cols-2 mt-7 flex-wrap gap-x-7 gap-y-7"><div class="bg-white shadow-chart px-8 py-6 w-full"><h4 class="font-bold">Moved from Registered Address</h4><p class="mt-1 mb-6">Review for consideration of challenge</p><div class="flex gap-3 flex-col md:flex-row"><a class=" px-2 py-3 rounded-lg text-base hover:shadow-btn disabled:opacity-30 outline-none focus:ring-red focus:ring-2 w-44 bg-red text-white block text-center" href="/assignedVoters">View All</a><a class=" px-2 py-3 rounded-lg text-base hover:shadow-btn disabled:opacity-30 outline-none focus:ring-red focus:ring-2 w-44 bg-red text-white block text-center" href="/assignedVoters?activeOnly=true">View Active</a></div></div><div class="bg-white shadow-chart px-8 py-6 w-full"><h4 class="font-bold">Non-Standard Addresses</h4><p class="mt-1 mb-6">Sorted by largest # of registrations</p><div class="flex gap-3 flex-col md:flex-row"><a class=" px-2 py-3 rounded-lg text-base hover:shadow-btn disabled:opacity-30 outline-none focus:ring-red focus:ring-2 w-44 bg-red text-white block text-center" href="/addressWithIssues">View All</a><a class=" px-2 py-3 rounded-lg text-base hover:shadow-btn disabled:opacity-30 outline-none focus:ring-red focus:ring-2 w-44 bg-red text-white block text-center" href="/addressWithIssues?activeOnly=true">View Active</a></div></div><div class="bg-white shadow-chart px-8 py-6 w-full"><h4 class="font-bold">Search by Name</h4><p class="mt-1 mb-6">Search for records by voter name</p><div class="flex gap-3 flex-col md:flex-row"><a class=" px-2 py-3 rounded-lg text-base hover:shadow-btn disabled:opacity-30 outline-none focus:ring-red focus:ring-2 w-44 bg-red text-white block text-center" href="/search/name">Search</a></div></div><div class="bg-white shadow-chart px-8 py-6 w-full"><h4 class="font-bold">Search by Address</h4><p class="mt-1 mb-6">Search for records by address</p><div class="flex gap-3 flex-col md:flex-row"><a class=" px-2 py-3 rounded-lg text-base hover:shadow-btn disabled:opacity-30 outline-none focus:ring-red focus:ring-2 w-44 bg-red text-white block text-center" href="/search/address">Search</a></div></div><div class="bg-white shadow-chart px-8 py-6 w-full"><h4 class="font-bold">My Challenges</h4><p class="mt-1 mb-6">Review records selected for challenge</p><div class="flex gap-3 flex-col md:flex-row"><a class=" px-2 py-3 rounded-lg text-base hover:shadow-btn disabled:opacity-30 outline-none focus:ring-red focus:ring-2 w-44 bg-red text-white block text-center" href="/reviewChallenges">View Now</a></div></div></div>