vote up 2 vote down star

i need to verify maximum allowed length for a field using selenium IDE. need advise from someone.

flag

3 Answers

vote up 3 vote down

Using Selenium enter data into the field that is longer than the expected allowance. Then read from the field to determine if the maxchar attribute on the input field in question has limited your input.

link|flag
vote up 0 vote down

You can use the assertAttribute command as follows:

assertAttribute | id=myTextField@maxlength | 20

Replace 'id=myTextField' above with the appropriate locator, and '20' with the expected max length.

link|flag
vote up -1 vote down

Is there any defined command to identify the max length of a field ?

link|flag
I'm not going to vote you down on this since you are new to SO, but generally here we do not ask followup questions by posting answers. Please edit your original question or use the comments system to add extra information rather than posting an answer. – TM Sep 21 at 13:52
thanks for advising :) – jkk Sep 22 at 4:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.