Text box validation using selenium IDE [closed] - selenium-ide

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am new to selenium and want to validate the data enter by the user is correct or not.
For example
There is email text box so i will ask user to enter email address.Than i want to validate that the data entered by the user is in correct email address format or not
Example 2
For contact no all the data should be numeric
Thanks in advance

Email Validation in selenium IDE
<tr>
<td>verifyValue</td>
<td>id=Emailid</td>
<td>regexpi:^[_a-z0-9-]+(\\.[_a-z0-9-]+)*#[a-z0-9-]+(\\.[a-z0-9-]+)*(\\.[a-z]{2,4})$</td>
</tr>
Try this..
Thank you..

Related

send html email [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to know if it's possible to send an html email which contains an html quiz, the receiver will fill in the quiz and send it back. Then, is it possible to see their answers?
It's easier to make a quiz in google docs and invite everyone by email.
Any script in an email will probably be blocked by firewalls, antivirus programs and email readers.
This is not possible. For sending email , you need to use atleast one server -side scripting language e.g. Asp.net , Php etc.
its a very common requirement and source codes are available easily.

How to clean-up email? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
i got email with such symbols in html code, as: 3D, =BB, =, =A0 . How to get normal email? Please write code on PHP that givs normal html Code. Thanks.
Use a software library that implements the RFC-2045 rules for you. See particularly 'quoted printable' in http://www.ietf.org/rfc/rfc2045.txt.

how to put contact no. validation in iphone application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am developing application where i need to get users phone number. Now i want to put validation. It could be textField should not be null and minimum length etc.
Please suggest
Thanks
Check this older SO question for an answer using a regex, but there are so many valid formats for all the different countries that the iPhone is sold in that I think you're best to not even try and just accept any string.

Automated Script to "Add to xxxx" [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to login to a website and automatically do some action like say Add to some place.. which is like clicking a submit button, followed by another such click. Is there some way that I can automate this.
Also, how can we protect our websites against such things.
P.S : This is only for information.
Try WWW::Mechanize
iMacros or Selenium for ui automation.

How to implement "Remember Me" password feature in C#? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to make use of the ASP.NET login control in my application. If someone checks the checkbox placed in that control for "remember me next time", I want to give him access without typing his password into the application again.
Google shows this article for example: http://dotnetblogger.com/post/2010/01/11/ASPNET-Membership-Remember-Me-That-Actually-Works.aspx