Apache Jmeter “Switch Controller” With Example

“Switch Controller” is one of the Logic Controller of Apache Jmeter. As name suggest, You can switch your targeted software application page request to run using Switch Controller. You can set your required request id in Switch Controller to execute it so all other requests under Switch Controller will be neglected during execution. Let we look … Read more

“storeChecked” and “verifyChecked” Commands Tutorials For Selenium IDE

“storeChecked” and “verifyChecked” are check box related commands and are useful to verify current (checked or not checked) condition of check box. Earlier i had published post about 2 related commands – assertChecked and assertNotChecked. All these four commands are working with check box. Now let me come to the point. “storeChecked” and “verifyChecked” are useful for the … Read more

How to Use Selenium IDE “waitForText” and “waitForNotText” commands?

“waitFor” commands of selenium IDE are very useful for your software application regression testing. There are many waitFor commands available in selenium IDE like – “waitForElementPresent ” command will pause selenium until targeted element not present on software web application page,  “waitForPageToLoad” command will force selenium to pause until page not get loaded properly. Same way, “waitForText” … Read more

Selenium – How to select window if window do not have title or name

Selecting new opened window using “selectWindow” command in selenium IDE is very easy if new window has title or name. Click here to view example of “selectWindow” command with title as a target. If window has title then we can add it’s title in target field with “selectWindow” command and this way selenium can identify window. … Read more