Experience & exploration about software QA tools & techniques. Maintaining & writing blog posts on qavalidation.com! Publishing video tutorials on youtube.com/qavbox
Basics of testng.xml is covered in last post, now let’s see different ways to run testng.xml Using code editor pane In Eclipse / InteliJ editor, right click on the project, select Run As -> TestNG Test or You can run specific testNG test methods, by clicking on the green play icon left to each @Test…
PageFactory is an extended support to POM (PageObjectModel), used to locate webelement in adifferent manner than mentioned here. Before we learned to declare and locate an WebElement as below : WebElement txt_GoogleSrch = driver.findElement(By.id(“q”)); Using PageFactory @FindBy @FindBy(ID = “q”) private WebElement txt_GoogleSrch; or this can even read as, @FindBy(how = How.ID, using = “q”)…
With time, increasing in the functionality of software products, test automation script also increases, so we tend to develop robust frameworks which are simple and easy to maintain our test scripts. Traditional framework in traditional frameworks, we normally divide test scripts based on the modules and create separate test script files for each module,To understand the…
watch this video to understand, basics of what exactly an API (Application programming Interface)