How To Show/Hide Text Box In Selenium IDE Using Javascript

If you see selenium IDE commands with examples on COMMAND LIST PART 1 and COMMAND LIST PART 2, You will find many commands to perform different actions on web page. But still selenium IDE have not any commands to perform few actions directly like showing hidden element or hiding any visible element. Example – To … Read more

Enabling/Disabling Text Box In Selenium IDE Using Javascript

Before discussing on enabling/disabling any element in selenium IDE, Let me tell you one thing – Selenium IDE is less powerful compared to Selenium RC and WebDriver, we can not perform all the tasks in selenium IDE. But still we can automate simple flows very easily in selenium IDE compared to webdriver because selenium IDE is … Read more

“runScript” Command Example To Change Title Of Page In Selenium IDE

“runScript” command can be used for the different purpose in different condition. You can use it to run any java script in selenium IDE. View my previous 3 posts where i have described how to use “runScript” command for different purpose. Today we are taking one example of changing page title using “runScript” command. Run … Read more

Selenium IDE – “runScript” command example to split drop down label string

“runScript” command Example 1 and Example 2 will describe you how to generate alert message in selenium IDE. Now let we go at next step. Supposing i have a drop down containing labels Volvo, Saab, Opel, Audi, Toyota and Renault. I want to pick one specific label from it to store it in to variable to … Read more