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

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 “select” and “selectAndWait” command in selenium IDE

“select” Command Purpose of “select” command is to select label from drop down/combo box or list box. New Test Command Target Value open http://only-testing-blog.blogspot.com/2014/01/textbox.html select name=FromLB Russia View example of HOW TO SELECT VALUE FROM DROP DOWN IN WEBDRIVER. In this example, You need to add combo box id/Name/Xpath into target column and need to … Read more