Complex UI elements in Geb browser functional tests

Browser functional testing is a great way to verify your web application fully works end-to-end. Interacting with standard web page elements like links and forms is often straightforward, but driving more complex UI elements such as sliders and date pickers can get tricky. In this post we’ll go through some examples of working with these types of elements using the Geb functional testing framework.

Using mouse

In this example we’ll move a slider element using the mouse. Geb provides an interact block that we can use to drive the mouse using Selenium Actions. Here we’ll click the slider element, move it horizontally be a given number of pixels, then release the slider.

Using keyboard

Another way to interact with these types of elements is using the keyboard. With Geb we can use the left-shift operator to send keystrokes to any UI element.

For example, if you wanted to send the individual keys for each letter in the word “value” to an input field, you can use:

Or if you want to send a non-character keystroke, such as using the right arrow to move a slider, you can use:

Using raw Javascript

And if all else fails, you can use Geb’s support for running raw Javascript inside your test to interact with an element. One common use of this technique is to click an element that is difficult to make visible using a test. Maybe something like a mouse-over menu that is tricky to hover over in a test. Selenium (which Geb is based upon) doesn’t allow interacting with hidden elements, but we can use some jQuery in our test to get around this restriction.

Example code

A full Geb example including some the code samples above is on my Geb example Github repo.

Happy testing!

About the Author

Object Partners profile.

One thought on “Complex UI elements in Geb browser functional tests

  1. Doug says:

    Great info Craig

Leave a Reply to Doug Cancel reply

Your email address will not be published.

Related Blog Posts
Natively Compiled Java on Google App Engine
Google App Engine is a platform-as-a-service product that is marketed as a way to get your applications into the cloud without necessarily knowing all of the infrastructure bits and pieces to do so. Google App […]
Building Better Data Visualization Experiences: Part 2 of 2
If you don't have a Ph.D. in data science, the raw data might be difficult to comprehend. This is where data visualization comes in.
Unleashing Feature Flags onto Kafka Consumers
Feature flags are a tool to strategically enable or disable functionality at runtime. They are often used to drive different user experiences but can also be useful in real-time data systems. In this post, we’ll […]
A security model for developers
Software security is more important than ever, but developing secure applications is more confusing than ever. TLS, mTLS, RBAC, SAML, OAUTH, OWASP, GDPR, SASL, RSA, JWT, cookie, attack vector, DDoS, firewall, VPN, security groups, exploit, […]