Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pragmatictesters/5888cb72bc49ef66ac12f3da7e8cf4c0 to your computer and use it in GitHub Desktop.
Save pragmatictesters/5888cb72bc49ef66ac12f3da7e8cf4c0 to your computer and use it in GitHub Desktop.
JMeter Example : WebDriver Sampler access a page in the system
var pkg = JavaImporter(org.openqa.selenium)
var time = JavaImporter(java.time)
var support_ui = JavaImporter(org.openqa.selenium.support.ui);
var wait = new support_ui.WebDriverWait(WDS.browser, time.Duration.ofSeconds(30));
WDS.sampleResult.sampleStart();
WDS.log.info("Start navigating to new bus incident creation page");
waitAndClick(pkg.By.cssSelector("#New"));
waitAndClick(pkg.By.cssSelector("#BusIncident_3"));
waitAndClick(pkg.By.cssSelector("#BusIncident_3_0"));
waitUntilLoadingIsCompleted();
WDS.log.info("Accessed the new bus incident creation page");
WDS.sampleResult.sampleEnd();
function waitUntilLoadingIsCompleted() {
wait.until(support_ui.ExpectedConditions.presenceOfElementLocated(pkg.By.cssSelector(".k-loading-text")));
wait.until(support_ui.ExpectedConditions.invisibilityOfElementLocated(pkg.By.cssSelector(".k-loading-text")));
}
function waitAndClick(element){
wait.until(support_ui.ExpectedConditions.elementToBeClickable(element));
WDS.browser.findElement(element).click()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment