Currently, I am working on an ajax form where CSS elements are dynamically changed. I am curious to know if it is feasible to verify these changes using Selenium. For example, checking if the background color changes from #ffffff to #000000 after clicking a button.
I have searched online for information but only found details on the 'css=' locator type which provides locations of selectors in the DOM model, not the actual CSS elements.
Is there a way to achieve what I have described?