One of the biggest challenges with Selenium tests is that they can be brittle and challenging to maintain over time. This is largely due to the fact that things in the application you’re testing change — causing your tests to break.
But the reality of a software project is that change is a constant. So we need to account for this reality somehow in our test code in order to be successful.
A Page Objects Primer
Rather than write your test code directly against your app, you can model the behavior of your application into simple objects and write your tests against them instead. That way when your app changes and your tests break, you only have to update your test code in one place to fix it.
With this approach, we not only get the benefit of controlled chaos, we also get reusable functionality across our suite of tests and more readable tests.
Step 1: Create A Page Object And Update Test
First we’ll need to create a package called pageobjects in our src/tests/java directory. Then let’s add a file to the pageobjects package called Login.java. When we’re done our directory structure should look like this.
And here’s the code that goes with it.
At the top of the file we specify the package where it lives and import the requisite classes from our libraries. We then declare the class (e.g., public class Login), specify our field variables (for the Selenium instance and the page’s locators), and add three methods.
The first method (e.g., public Login(WebDriver driver)) is the constructor. It will run whenever a new instance of the class is created. In order for this class to work we need access to the Selenium driver object, so we accept it as a parameter here and store it in the driver field (so other methods can access it). Then the login page is visited (with driver.get).
The second method (e.g., public void with(String username, String password)) is the core functionality of the login page. It’s responsible for filling in the login form and submitting it. By accepting strings parameters for the username and password we’re able to make the functionality here dynamic and reusable for additional tests.
The last method (e.g., public Boolean successMessagePresent()) is the display check from earlier that was used in our assertion. It will return a Boolean result just like before.
Now let’s update our test to use this page object.
Since the page object lives in another package, we need to import it (e.g.,import pageobjects.Login;).
Then it’s a simple matter of specifying a field for it (e.g., private Login login), creating an instance of it in our setUp method (passing the driver object to it as an argument), and updating the test with the new actions.
Now the test is more concise and readable. If you save this and run it (e.g.,mvn clean test from the command-line), it will run and pass just like before.
Step 2: Write Another Test
Creating a page object may feel like more work than what we started with initially. But it’s well worth the effort since we’re in a much sturdier position (remember: controlled chaos) and able easily write follow-on tests (since the specifics of the page are abstracted away for simple reuse).
Let’s add another test for a failed login to demonstrate.
First, let’s take a look at the markup that gets rendered when we provide invalid credentials:
Here is the element we’ll want to use.
class=”flash error”
Let’s add a locator to our page object along with a new method to perform a display check against it.
Now we’re ready to add another test to check for a failure condition.
If we save these changes and run our tests (mvn clean test) we will see two browser windows open (one after the other) testing for successful and failure login scenarios.
Why Asserting False Won’t Work (yet)
You may be wondering why we didn’t just check to see if the success message wasn’t present in our assertion.
There are two problems with this approach. First, our test will fail. This is because Selenium errors when looking for an element that’s not present on the page — which looks like this:
Second, the absence of a success message doesn’t necessarily indicate a failed login. The assertion we ended up with is more concise.
Step 3: Confirm We’re In The Right Place
Before we can call our page object finished, there’s one more addition we should make. We’ll want to add an assertion to make sure that Selenium is in the right place before proceeding. This will help add some resiliency to our test.
As a rule, you want to keep assertions in your tests and out of your page objects. But this is the exception to the rule.
After importing the assertion library we put it to use in our constructor (after the Selenium command that visits the login page). With it we’re checking to see that the login form is displayed. If it is, the tests using this page object will proceed. If not, the test will fail and provide an output message stating that the login form wasn’t present.
With Page Objects you’ll be able to easily maintain and extend your tests. But how you write your Page Objects may vary depending on your preference/experience.
Reference: http://elementalselenium.com/
whoah this blog is great i love reading your articles.
Stay up the good work! You recognize, many individuals are searching
around for this information, you can help them greatly.
LikeLike