Test Automation Done Right: Best Practices and Mistakes to Avoid

Having worked in test automation across various fields, I've seen both the good and bad sides of automation practices and I’ve learned a lot from my own mistakes. I want to share those mistakes with you so you can avoid them. When building test automation frameworks, it’s easy to get caught up in coding and…

Selenium with xUnit Part 2: Locating Elements

After writing my very first Selenium test with xUnit, now I can dive into different methods of finding elements on the page. You can locate an element/elements with FindElement/FindElements methods by different properties of an element such as ID, Name, Class, XPath, CSS Selectors, link Text, etc. FindElement method returns the first matching element on…