Hero Background

Next-Gen App & Browser Testing Cloud

Trusted by 2 Mn+ QAs & Devs to accelerate their release cycles

Next-Gen App & Browser Testing Cloud
  • Home
  • /
  • Blog
  • /
  • Make Your Test Robust For Slow Loading Web Pages
Automation

Loadable Components In Selenium: Make Your Test Robust For Slow Loading Web Pages

In the selenium library, Loadable Component class helps the automation test engineers to make sure that the page or its component is loaded successfully. This hack should greatly reduce the efforts that you put in debugging your test cases.

Author

Nishant Kashyap

January 11, 2026

Being in automation testing for the last 10 years I have faced a lot of problems. Recently I was working on a selenium automation project and in that project everything was going fine until I faced a most common but difficult problem. How to make sure that my selenium automation testing work fine even for slow loading web pages. A quick google and browsing through forums highlighted that this is a problem that testers are facing for many past years. If you too have faced it then yes, this article is there to help you from my personal experience. Well, this problem is majorly observed in the case when the web application uses a javascript heavy framework.

The component that’s gonna help us in page loading is an extended version of PageObject pattern called Loadable component.In the selenium library, Loadable Component class helps the automation test engineers to make sure that the page or its component is loaded successfully. This hack should greatly reduce the efforts that you put in debugging your test cases.

On a side note, to make your life of testing easy and fuss-free while debugging, you can try the LT Debug Chrome extension.

To start with, we would first have to make sure that all the PageObject classes extends the abstract LoadableComponent class and in turn provide implementation for the following two methods:

  • protected abstract void load()
  • protected abstract void isLoaded() throws java.lang.Error

Code to ensure whether the page or component inside the page is completely loaded in given in isLoaded(). If the page is not completely loaded, java.lang.Error is thrown

Fallback or mitigation code is given load(), if isLoaded() fails to load the complete page successfully.

Let’s take an example on how it works :

Suppose, we have a LoginPage with username, password and submit button.

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.CacheLookup;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;

public class LoginPage {

private WebDriver driver;

@FindBy(id = "login_username")
private WebElement usernameInputBox;

@FindBy(id = "login_password")
private WebElement passwordInputBox;

@FindBy(id = "login_submit")
private WebElement loginButton;

public AdminLoginPageUsingLoadableComponent(WebDriver driver){
this.driver = driver;
PageFactory.initElements(driver, this);
}

public NextPage login(String loginUsername, String loginPassword){
usernameInputBox.sendKeys(loginUsername");
passwordInputBox.sendKeys(loginPassword");
loginButton.click();

return PageFactory.initElements(driver, NextPage.class);
}

}

Now, the above PageObject can be transformed using LoadableCompenent like below.

import org.junit.Assert;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.CacheLookup;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
import org.openqa.selenium.support.ui.LoadableComponent;

public class LoginPageUsingLoadableComponent extends LoadableCompenent {

private WebDriver driver;

@FindBy(id = "login_username")
private WebElement usernameInputBox;

@FindBy(id = "login_password")
private WebElement passwordInputBox;

@FindBy(id = "login_submit")
private WebElement loginButton;

public LoginPageUsingLoadableComponent(WebDriver driver){
this.driver = driver;
PageFactory.initElements(driver, this);
}

public NextPage login(String loginUsername, String loginPassword){
usernameInputBox.sendKeys(loginUsername");
passwordInputBox.sendKeys(loginPassword");
loginButton.click();

return PageFactory.initElements(driver, NextPage.class);
}

@Override
protected void load() {
driver.get("http://www.example.com/login");
}

@Override
protected void isLoaded() throws Error {
Assert.assertTrue(driver.getCurrentUrl().contains("login"));
}

}

LoginPageUsingLoadableComponent loginPage = new LoginPageUsingLoadableComponent(driver).get();

The get() method from the LoadableComponent class will ensure sure the page or the component is loaded by invoking the isLoaded() method. If the assertion fails there, load() method is called, followed by isLoaded().

Hope this article helps in stabilizing UI tests !!!

...

2M+ Devs and QAs rely on TestMu AI

Deliver immersive digital experiences with Next-Generation Mobile Apps and Cross Browser Testing Cloud

Author

Nishant Kashyap is a community contributor with 18+ years of experience in engineering leadership, product development, and quality-driven platform delivery. As VP of Engineering, he has led large-scale teams across backend, frontend, mobile, infrastructure, security, and quality engineering, ensuring high-quality, production-ready systems. Nishant has driven CI/CD integration, code coverage, verification engines, and automation-led quality practices while building and scaling platforms from 0→1 to high-scale systems. He holds a B.Tech in Computer Science and has worked across domains including gaming, healthcare, and e-commerce.

Close

Summarize with AI

ChatGPT IconPerplexity IconClaude AI IconGrok IconGoogle AI Icon

Did you find this page helpful?

More Related Hubs

TestMu AI forEnterprise

Get access to solutions built on Enterprise
grade security, privacy, & compliance

  • Advanced access controls
  • Advanced data retention rules
  • Advanced Local Testing
  • Premium Support options
  • Early access to beta features
  • Private Slack Channel
  • Unlimited Manual Accessibility DevTools Tests