Created
January 2, 2023 07:21
-
-
Save pragmatictesters/5888cb72bc49ef66ac12f3da7e8cf4c0 to your computer and use it in GitHub Desktop.
JMeter Example : WebDriver Sampler access a page in the system
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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