“assertEditable” and “assertNotEditable” command in selenium IDE

“assertEditable”  Command You can use “assertEditable” command with only and only input fields like text box, list box, drop downs etc. You can check and assert that targeted element is editable or not. If targeted element is not editable then it will stop execution of remaining selenium script. New Test Command Target Value open https://www.google.com … Read more

“assignId” and “captureEntirePageScreenshot” commands of selenium IDE

“captureEntirePageScreenshot” command This command is very useful for capture and save full page screenshot. You can use this command anywhere in between. It will store screen shot of current selected browser tab. New Test Command Target Value open http://www.google.com captureEntirePageScreenshot D:\selenium.jpg VIEW CAPTURE SCREENSHOT EXAMPLE IN WEBDRIVER In above example, “captureEntirePageScreenshot” command will capture and … Read more

Use of “storeSelectedIndex” and “storeSelectedIndexes” command in selenium IDE

“storeSelectedIndex” Command storeSelectedIndex works with only select or multi-select target element like drop down and list box. Using this command, you can get option index of selected option. New Test Command Target Value storeSelectedIndex ctrl5_Main_ddlState indexno echo ${indexno} storeSelectedIndexes ctrl5_Main_ddlState indexnos echo ${indexnos} (Note : Click here to view examples of other store commands.) In … Read more

Use of “mouseOver”, “mouseOut”, “mouseOverAndWait” and “mouseOutAndWait” commands in selenium IDE

You can use mouseOver and mouseOut command when your targeted software web page element has effect on mouse over and mouse out. Targeted element can be button or image or link or anything else.  Suppose you have one image on software web page and it is changing image when you move mouse on it. Now if you … Read more