Fluent Interface in Selenium Page Object Pattern
The main goal of Fluent Interface is a more readable code, Fluent Interface is nothing else like method chaining. How to achieve that? It is very simple – in your methods just return value which is the...
View ArticleSeleniumWait library to solve issues in dynamic Web Applications
Nowadays there are more and more Web Applications which use JavaScript and AJAX. As a result almost all content on the page are generate or fetch dynamically. Every Test Automation Engineer had a...
View ArticleSelenium and dynamic Web Applications once again
Before I wrote about dynamic Web Applications and SeleniumWait library to solve issues related to waiting for a dynamically appearing elements. In specific applications we can encounter also another...
View ArticleAutomatic Spell Checker for Web Applications with JUnit report
Some time ago in my project at BLStream we wanted to be sure that texts on web pages are correct and do not have any typos. We did not find any tool which could be easily added to our continuous...
View ArticleSelenium: Simple waitFor method
In the last post about Selenium and waitFor issues I mentioned about automatically refreshing web pages. There was an example with list of the elements which is refreshed in every 5 seconds. Here is a...
View Article