How To Generate And Insert Log In Selenium Webdriver Using log4j Jar

Assume you have prepared test case for your software web application test scenario (using selenium webdriver with eclipse and junit) and now you wants generate log file to insert your execution time log messages in to it. How you will do it? Selenium webdriver software testing tool don’t have any built in function or method to … Read more

Selenium IDE “assertSelectedId” and “assertSelectedIds” Commands With Example

Most of all software web applications contains list box or drop downs on web page and “assertSelectedId” and “assertSelectedIds” commands are very useful to verify and assert the ids of selected label/s from list box. Both these are very good alternatives of “assertSelectedIndex“, “assertSelectedIndexes“, “assertSelectedLabel” commands. You can view few related verification commands like “verifySelectedId“, … Read more

How to apply wait in webdriver till element becomes invisible or hidden

As you know, WebDriver is software web application regression testing tool and you will face many problems during your webdriver test case creation and execution. You must knows alternate solution if one not works for your software automation test scenario. For example, you have used IMPLICIT WAIT in your software automation test case but if … Read more

Selenium IDE “verifyElementNotPresent” and “waitForElementNotPresent” Commands With Examples

In any software application regression test case, you need to verify and wait for different conditions as per test scenario requirement. Selenium IDE has many different buit in VERIFICATION and WAITFOR commands to handle that particular situation. Today we will look at “verifyElementNotPresent” and “waitForElementNotPresent” commands with examples. First of all let me describe you both … Read more