Selenium IDE commands “storeSelectedLabel” and “storeSelectedLabels”

“storeSelectedLabel” Command We can use “storeSelectedLabel” Command only with drop down and list box. When you want to know or you need to compare selected option value of drop down with some other value at that time first you need to store value of selected label. In such condition you can use “storeSelectedLabel” Command. Let … Read more

“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