Hope someone can guide me in the right direction of clicking the 'Active' checkbox , Problem is application defaults to have Active checked so filter dropdown stores the option 'Active' so my xpath sees two 'Active' and clicks the first one which is the dropdown.
driver.findElement(By.xpath("//span[contains(text(),'Active')]")).click();
HTML pic of the dropdown breakdown
When I used code above two elements were present at the same time so dropdown got clicked instead of actually uncheck the 'Active' checkbox. Hope this makes it clear for you.