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

How to use “assertSomethingSelected” and “assertNotSomethingSelected” commands in selenium IDE

“assertSelectOptions” and “assertNotSelectOptions” commands are useful to assert that required values in list box are selected or not. Few days back, I had posted article with good working example of “assertSelectOptions” and “assertNotSelectOptions“. “assertSomethingSelected” and “assertNotSomethingSelected” commands  has little different function compared to them. Both these commands are also used for assertion of selection in list box or drop … Read more

How To Generate Mouse Scrolling Event Using Selenium IDE With Example Tutorial

Many tutorial post are available for selenium IDE Mouse related commands but mouse scrolling event was missing from them till now. You need mouse scrolling event when you are testing software application like Facebook. In Facebook, post are loaded on mouse scrolling if you have seen. In this kind of scenario, you need to generate … Read more

Use of “assertSelectOptions” and “assertNotSelectOptions” Commands in Selenium IDE

As you know, there are many assertions commands available in selenium IDE. You can view list of assertion commands with example tutorial if you wish.”assertSelectOptions” and “assertNotSelectOptions” commands are part of selenium IDE assertions and you can use them with drop down or list box of your software application page to assert the values inside … Read more