Mukul Bhatnagar2025-06-30T10:53:42+00:00Hybrid Framework
Hybrid Driven Framework is an ideal framework for manual testers who have no programming knowledge. This concept takes advantage of the Keyword-driven framework and the Information-driven framework.
Ingredients
JAVA, Selenium, IDE (any)
Directions
# Sauté Keywords
publicclass Keywords {
publicvoidclick(RemoteWebDriverdriver, String ObjectName, String locatorType)
throwsIOException, InterruptedException{
Thread.sleep(1000);
try {
driver.findElement(this.getObject(ObjectName, locatorType)).click();
}catch (Exception e) {
//
}
}
publicvoidenter(RemoteWebDriverdriver,...