Using “verifyEditable” and “verifyNotEditable” commands with example in selenium IDE

“verifyEditable” and “verifyNotEditable” commands are verification commands in selenium IDE and useful to check targeted element is editable or not. You need to perform this king of verification on input elements like text box, buttons, check box, radio buttons to get the editable status at certain time. “verifyEditable” and “verifyNotEditable” commands will not take any … Read more

Selenium “shiftKeyDown” and “shiftKeyUp” commands example to press shift key

“shiftKeyDown” and “shiftKeyUp” commands are specially designed for shift key of keyboard. Selenium IDE has many commands related to keyboard keys(Example : keyDown) and mouse keys (Example : mouseDown). “shiftKeyDown” and “shiftKeyUp” has not major function but sometimes such specially designed commands are very helpful in automation tools to automate your regression process easy and … Read more

Selenium IDE “verifyValue” and “assertValue” commands use with Example

In Selenium IDE, “verifyValue” and “assertValue” commands are used with check box or radio button elements. As name suggests, Both are used only for verification of check box or radio button’s ON/OFF(Check/Unchecked) status. Only difference between “verifyValue” and “assertValue” command is “verifyValue” will keep execution continue on fail and “assertValue” command will stop execution of … Read more

Selenium IDE “verifyAttribute” and “assertAttribute” commands example

“verifyAttribute” and “assertAttribute” commands are useful for verification of values of an attribute of any node on the page of software web application. You can check value of an attributes like class, title, id, name, type, etc.. I got many questions about “Difference between assert and verify in selenium with example” so i will describe … Read more