Last active
January 10, 2023 10:40
-
-
Save pragmatictesters/bd9dd9bc9597807b8d75354a518941c2 to your computer and use it in GitHub Desktop.
JMeter WebDriver Sampler : Useful commands
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
//Working with the browser | |
//Please refer to Selenium WebDriver API for available methods | |
//https://www.selenium.dev/selenium/docs/api/java/index.html?overview-summary.html | |
//1.1 Navigate to a URL | |
WDS.browser.get("https://jmeter-plugins.org") | |
//1.2 Get the page Title | |
WDS.browser.getTitle() | |
//1.3 Refresh the browser window | |
WDS.navigate().refresh() | |
//1.4 Maximize the browser window | |
WDS.browser.manage().window().maximize() | |
//Working with WBS.sampleResult | |
//https://jmeter.apache.org/api/org/apache/jmeter/samplers/SampleResult.html | |
// 2.1 Start capturing the sampler timing | |
WDS.sampleResult.sampleStart() | |
//2.2 Stop the sampler timing | |
WDS.sampleResult.sampleEnd() | |
//2.3 To ignore the test results | |
WDS.sampleResult.setIgnore() | |
//2.4 Set the status of the sample | |
WDS.sampleResult.setSuccessful(false) | |
//2.5 Set the status message of the sample | |
WDS.sampleResult.setResponseMessage('Expected title was Camms.Testing') | |
//2.6 Cleanup the cached data | |
WDS.sampleResult.cleanAfterSample() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment