A Bug in the System:
Monday, October 30, 2023
Saturday, July 22, 2023
An Introduction to mind maps for testers
Why?
- Similar to identifying test conditions and done as part of the test analysis activity.
- Better medium to convey the test scope to other stakeholders than written test conditions.
- As relationships between branches and a complete picture can be seen, it can be a better guide than test conditions when test design is done.
How?
- Think in terms of categories, where supersets should be closely related than subsets.
- Think in terms of use case actors.
- Think in terms of quality characteristics
- Think in terms of architecture
- In terms of success and failure interactions.
- In terms of design techniques
- Classification tree
- Write in short form
- Level of detail should be decided on project requirements and constraints. If you have broken it down to the level of high-level test cases you have gone too far.
Sunday, April 16, 2023
Multi Tab Support in Selenium Web Driver
Selenium Web Driver is capable of handling multiple browser tabs. Though the requirement to automate workflows that span multiple tabs is one that automation engineers don’t come across all the time, it’s always good to know how it can be done.
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
package com.dumiduh.other; | |
import com.dumiduh.constants.Constants; | |
import com.dumiduh.utils.TestBase; | |
import org.openqa.selenium.By; | |
import org.testng.annotations.AfterClass; | |
import org.testng.annotations.BeforeClass; | |
import org.testng.annotations.Test; | |
import java.util.List; | |
import java.util.stream.Collectors; | |
public class MultiTabTest extends TestBase { | |
@BeforeClass | |
public static void setup() { | |
instantiateDriver(); | |
driver.get(Constants.MULTI_WINDOW); | |
} | |
@Test | |
public static void multiWindowTest() { | |
System.out.println("URL:\t" + driver.getCurrentUrl()); | |
//opening a new tab | |
driver.findElement(By.xpath("//*[text()='Click Here']")) | |
.click(); | |
//A new tab has been opened. | |
System.out.println("Number of tabs\t" + driver.getWindowHandles() | |
.size()); | |
List<String> windows = driver.getWindowHandles() | |
.stream() | |
.map(window -> { | |
return window; | |
}) | |
.collect(Collectors.toList()); | |
driver.switchTo() | |
.window(windows.get(windows.size() - 1)); | |
driver.get("https://www.yahoo.com"); | |
System.out.println("URL:\t" + driver.getCurrentUrl()); | |
} | |
@AfterClass | |
public static void cleanUp() { | |
driver.quit(); | |
} | |
} |
Saturday, April 1, 2023
Selenium Custom Locators
Selenium Web Driver supports both Xpath and CSS Locators as element locator strategies. As these strategies are comprehensive ideally there is no need to provide other abstract strategies such as ID and Class, but providing such strategies OOTB the designers of Selenium have lowered the entry barrier to automation using their library. So as framework developers you can take this further and provide other custom locator strategies to the users. The snippet below shows how a custom by class can be made to wrap around the XPath contains function.
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
package com.dumiduh.utils; | |
import org.openqa.selenium.By; | |
import org.openqa.selenium.SearchContext; | |
import org.openqa.selenium.WebElement; | |
import java.util.List; | |
public class Text extends By { | |
private String searchTerm; | |
private final String XPATH = "//*[contains(text(),'%s')]"; | |
public static By containsText(String searchTerm) { | |
return new Text(searchTerm); | |
} | |
private Text(String value) { | |
this.searchTerm = value; | |
} | |
@Override | |
public List<WebElement> findElements(SearchContext context) { | |
return context.findElements(By.xpath(String.format(XPATH, searchTerm))); | |
} | |
} |
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
package com.dumiduh.other; | |
import com.dumiduh.constants.Constants; | |
import com.dumiduh.utils.Text; | |
import com.dumiduh.utils.TestBase; | |
import org.testng.Assert; | |
import org.testng.annotations.AfterClass; | |
import org.testng.annotations.BeforeClass; | |
import org.testng.annotations.Test; | |
/*** | |
* The objective of this test is to demonstrate the use of a custom locator. | |
*/ | |
public class CustomeLocatorTest extends TestBase { | |
@BeforeClass | |
public static void setup() { | |
instantiateDriver(); | |
driver.get(Constants.DYNAMIC_LOAD); | |
} | |
@Test | |
public static void byContainsText() { | |
Assert.assertTrue(driver.findElement(Text.containsText("Powered by")).isDisplayed(), "the expected text value was not found in the html document."); | |
} | |
@AfterClass | |
public static void cleanUp() { | |
driver.quit(); | |
} | |
} |
Friday, March 10, 2023
A Comparison of Network Interception capabilities between Cypress and Selenium
Both Selenium and Cypress provide network interception capabilities. As the name implies, the capability allows the user to intercept HTTP requests and manipulate the response received for the given response. This is useful when you want to automate UI scenarios where the preconditions and steps required for the expected output can’t be easily produced.
To evaluate this capability I went about automating the 3 scenarios found below,
To evaluate this capability I went about automating the 3 scenarios found below,
- Intercepting and waiting for a network resource attached to a web page to be received to the client side.
- Intercepting and simulating 400 and 500 errors.
- Intercepting and changing response payloads.
Cypress Examples
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
/// <reference types='cypress'/> | |
describe("Intercepting network resources", ()=>{ | |
it("Intercepting and waiting for a URL", ()=>{ | |
cy.intercept({ | |
method: "GET", | |
url: "https://the-internet.herokuapp.com/css/app.css" | |
}).as("slowResource") | |
cy.visit("https://the-internet.herokuapp.com/dropdown"); | |
cy.wait("@slowResource").its('response.statusCode').should('eq', 200); | |
}) | |
it("Intercepting and throwing a network error for a resource", ()=> { | |
cy.intercept({ | |
method: "GET", | |
url: "https://the-internet.herokuapp.com/dropdown" | |
},{ | |
forceNetworkError: true | |
}).as("slowResource") | |
cy.visit("https://the-internet.herokuapp.com/dropdown"); | |
}) | |
it.skip("Intercepting and loging the request object", ()=>{ | |
cy.intercept({ | |
method: "GET", | |
url: "https://the-internet.herokuapp.com/dropdown" | |
}, (req) => { | |
console.log(req); | |
}).as("slowResource") | |
cy.visit("https://the-internet.herokuapp.com/dropdown"); | |
cy.wait("@slowResource").its('response.statusCode'); | |
}) | |
it("Intercepting and replying with a static response", ()=>{ | |
cy.intercept('GET','https://the-internet.herokuapp.com/dropdown', {statusCode: 200, body: "<html><body>test</body></html>"}).as("slowResource") | |
cy.visit("https://the-internet.herokuapp.com/dropdown"); | |
cy.wait("@slowResource").its('response.statusCode').should('eq', 200); | |
}) | |
}) |
Selenium Examples
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
package com.dumiduh.other; | |
import io.github.bonigarcia.wdm.WebDriverManager; | |
import org.openqa.selenium.chrome.ChromeDriver; | |
import org.openqa.selenium.devtools.NetworkInterceptor; | |
import org.openqa.selenium.remote.http.Contents; | |
import org.openqa.selenium.remote.http.HttpResponse; | |
import org.openqa.selenium.remote.http.Route; | |
import org.testng.annotations.AfterClass; | |
import org.testng.annotations.BeforeClass; | |
import org.testng.annotations.Test; | |
import static org.openqa.selenium.remote.http.HttpMethod.GET; | |
public class NetworkInterceptorTest { | |
ChromeDriver driver; | |
@BeforeClass | |
public void setup(){ | |
WebDriverManager.chromedriver().setup(); | |
} | |
@Test | |
public void responseInterceptionError() { | |
driver = new ChromeDriver(); | |
Route route = Route.matching(req -> GET == req.getMethod() && req.getUri() | |
.endsWith("/dropdown")) | |
.to(() -> req -> new HttpResponse().setStatus(500)); | |
new NetworkInterceptor(driver, route); | |
driver.get("https://the-internet.herokuapp.com/dropdown"); | |
driver.getPageSource() | |
.contains("HTTP ERROR 500"); | |
} | |
@Test | |
public void responseInterceptionBody() { | |
driver = new ChromeDriver(); | |
Route route = Route.matching(req -> GET == req.getMethod() && req.getUri() | |
.endsWith("/dropdown")) | |
.to(() -> req -> new HttpResponse().setContent(Contents.utf8String("<html><body>test</body></html>"))); | |
new NetworkInterceptor(driver, route); | |
driver.get("https://the-internet.herokuapp.com/dropdown"); | |
} | |
@AfterClass | |
public void cleanup(){ | |
driver.quit(); | |
} | |
} |
Saturday, February 25, 2023
Abstracting the Test Layer using TestNG
The library architecture is popular among test automation framework designers. To follow this pattern, engineers decompose and abstract the automation logic at various conceptual levels, such as at the page, the component or at the element level. But usually, the test layer is left out of these decomposition efforts.
Leaving abstraction out of the test layer can in time lead to duplication of the logic as well as having to spend more time than what is required to script new scenarios. This post will discuss how the test layer can be abstracted and decomposed using TestNG.
Leaving abstraction out of the test layer can in time lead to duplication of the logic as well as having to spend more time than what is required to script new scenarios. This post will discuss how the test layer can be abstracted and decomposed using TestNG.
High-level Steps
- Start with designing and implementing test cases so that they are atomic
- Encapsulate the test layer by scripting the test steps and adding assertions required to validate the component. Then put a mechanism in place to read the test data from an object that can be passed from one test class to another as required.
- Finally, use the Factory feature in TestNG to compose the larger scripts using the test classes.
- Validate that the dropdown page loads the dropdown and that the values are as expected.
- Validate that the dropdown allows the user to select the option he wants to select.
Test Class 1
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
package com.dumiduh.elements; | |
import com.dumiduh.constants.Constants; | |
import com.dumiduh.function.DropDownPageFunctions; | |
import com.dumiduh.models.TestData; | |
import com.dumiduh.utils.JSONUtil; | |
import com.dumiduh.utils.TestBase; | |
import org.testng.Assert; | |
import org.testng.annotations.AfterClass; | |
import org.testng.annotations.BeforeClass; | |
import org.testng.annotations.Test; | |
/** | |
* The objective of this test class is to demonstrate how a dropdown maybe handled. | |
*/ | |
public class DropDownUsageTest extends TestBase { | |
@BeforeClass | |
public static void setup() { | |
instantiateDriver(); | |
driver.get(Constants.DROPDOWN_PAGE_URL); | |
} | |
@Test | |
public static void dropDownUsageTest() { | |
TestData testData = DropDownTest.data; | |
System.out.println("::\t"+ testData.getDropDownSelection()); | |
DropDownPageFunctions dropDownPageFunctions = new DropDownPageFunctions(driver); | |
dropDownPageFunctions.selectValueFromDropDown(testData.getDropDownSelection()); | |
//Asserts to see if the dropdown selection has been set. | |
Assert.assertTrue(dropDownPageFunctions.isTheGivenValueSelected(testData.getDropDownSelection())); | |
} | |
@AfterClass | |
public static void cleanUp(){ | |
driver.quit(); | |
} | |
} |
Test Class 2
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
package com.dumiduh.elements; | |
import com.dumiduh.function.DropDownPageFunctions; | |
import com.dumiduh.models.TestData; | |
import com.dumiduh.utils.JSONUtil; | |
import com.dumiduh.utils.TestBase; | |
import org.testng.Assert; | |
import org.testng.annotations.AfterClass; | |
import org.testng.annotations.BeforeClass; | |
import org.testng.annotations.Test; | |
import static com.dumiduh.constants.Constants.DROPDOWN_PAGE_URL; | |
public class DropDownPageElementsTest extends TestBase { | |
@BeforeClass | |
public static void setup() { | |
instantiateDriver(); | |
} | |
@Test | |
public static void dropDownPageElementTest() { | |
TestData data = DropDownTest.data; | |
driver.get(DROPDOWN_PAGE_URL); | |
DropDownPageFunctions dropdown = new DropDownPageFunctions(driver); | |
Assert.assertTrue(dropdown.isTheDropDownHeadingDisplayed()); | |
Assert.assertTrue(dropdown.isTheDropDownDisplayed()); | |
Assert.assertEquals(data.getNumberOfOptions(), dropdown.getTheListOfOptions() | |
.size()); | |
if (dropdown.getTheListOfOptions() | |
.containsAll(data.getListOfOptions())) { | |
Assert.assertTrue(true); | |
} | |
} | |
@AfterClass | |
public void cleanUp() { | |
DropDownTest.data.setDropDownSelection("Option 2"); | |
driver.quit(); | |
} | |
} |
Factory Class
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
package com.dumiduh.elements; | |
import com.dumiduh.models.TestData; | |
import com.dumiduh.utils.JSONUtil; | |
import org.testng.annotations.Factory; | |
public class DropDownTest { | |
static TestData data = JSONUtil.readAGivenTestDataItem("dropdownendtoend"); | |
@Factory | |
public static Object[] DropDownTest() { | |
return new Object[]{ | |
new DropDownPageElementsTest(), | |
new DropDownUsageTest()}; | |
} | |
} |
[1] - https://the-internet.herokuapp.com/dropdown
[repo] - https://github.com/handakumbura/SeleniumAutomationEmployerProfile/tree/feature/atomic_test_cases
Subscribe to:
Posts (Atom)
-
Why? Similar to identifying test conditions and done as part of the test analysis activity. Better medium to convey the test scope to other ...
-
BASH[1], to my understanding is not meant to be used as a general purpose programming language and attempting to use it for such purposes ca...
-
Learning SQE is like learning to play the drums, anyone can learn to keep a beat, but very few can master the instrument. SQE is hard becaus...