I have the following code. The site has a tab that only shows up once something happens. I'm testing to see if the tab is showing up but it always returns true.
if (html_tab1().exists() == true) {
//Some code
}
I think the problem is the way the html hides the tab. Does .exists() find the tab even when hidden from the HUD? If so, how do I rework the java to check for the tab as either hidden or showing. Thanks!