I looked everywhere and saw many solutions but unfortunately in my case, it's not a matter of waiting for the visibility of elements.
Basically I am analyzing a webpage where the contents are updated at certain internals, so the numbers of the webpage changes. But the number of elements I am querying are constant. So 10 elements in total. I am constantly querying these elements but very quickly I am getting "StaleElementReferenceException" because I assume in the middle of me calling FindElement or FindElements and me accessing .Text property, the item is stale.
I tried Try/Catch also but no luck. I don't care if the element is stale, I will get it next time as I am constantly reading them.
How can I fix this issue?