How will you test Email field?

Answers were Sorted based on User's Feedback



How will you test Email field?..

Answer / rajendra

E-mail address validation

Address = "A@b.c"; -- Valid
Address = "A@b.cnet"; -- Invalid
Address = "A@b.c_"; -- Invalid
Address = "A@bcnn"; -- Invalid
Address = "Ab.cnn"; -- Invalid
Address = "A@bc"; -- Invalid
Address = "A@bat@.cnn"; -- Invalid
Address = "A@bat/.com"; -- Invalid

Must not be too short and too long.
Only one @ in email address
Only one period ’.’or two periods.
No more than 3 characters after the final period (reverse
find is 0 based not 1 based)com/ org/net/mil/gov
Should not have an underscrode after @
Allowed characters 0-9 A-Z _. @-

Byeee Friends
Rajendra
rajendra_penumalli@yahoo.com

Is This Answer Correct ?    22 Yes 7 No

How will you test Email field?..

Answer / vishal bilgaiyan

There are many validation for E-mail here i am defining some
of them.
Email format: vishal.bilgaiyan @ gmail.com
|______________||_||___| |___|
(1) (2) (3) (4)
I have devided Email ID in 4 parts..
In first part we have to check invalid condition input
spaces, Left blank, use special character, symbols etc.

In Second part we have to check invalid condition input
other specail character [!#$%^&*()_-:;"'?/|\) at the place
of @. left thisfield as blank. input spaces.etc.

In third part we have to check invalid invalid domain.

In fourth part we have to check only valid
suffix(.com,.co.in,.edu,.info,.org,.in etc)

every time EmailID should be in well manner.
like vishal.bilgaiyan@gmail.com

Let me know if you have any problem regarding this issue.

Thanks to all of u...
bye

Is This Answer Correct ?    14 Yes 3 No

How will you test Email field?..

Answer / naveen kumaran.a

public boolean isValidEmailID(String emailID)
{
boolean valid = false;
if (emailID)!= null)
{
Pattern p = Pattern.compile(".+@.+\\[a-z]+")
Matcher m = p.matcher(emailID);
valid = m.matches();
}
return valid;
}

Is This Answer Correct ?    4 Yes 1 No

How will you test Email field?..

Answer / gavaskar

i will go for penetration testing

Is This Answer Correct ?    4 Yes 11 No

How will you test Email field?..

Answer / ananya

check that the .com part is there or not.And also put some
numeric arbit values on the field & then check the
functionality.

Is This Answer Correct ?    5 Yes 14 No

Post New Answer

More Manual Testing Interview Questions

What is a test requirement?

5 Answers   Covansys,


give some good bugs that u have found ?

1 Answers   CTS,


what is metrics?...What metrics do u follow in ur company?

6 Answers  


What is Ur Streght?(In P.M)

12 Answers   L&T, MBT,


1.How will u write traceability matrix? 2.What is Test summary Report…? 3. What is Test Closure report…? 4.What are the Testing methodologies that u have followed in your project ? plz...........do reply...............

1 Answers   Virtusa,






How GUI testing will be done in manual testing for a website?

6 Answers  


exact difference between smoke testing, sanity testing and unit testing

7 Answers  


I am doing manual testing for one website application. already i had prepared test case report,bug tracking report. now i need to perform functional testing of the application and prepare function test report. so can u send one model of the functional test report to me.. it is very helpful to me. my id is sunaruna84@gmail.com

0 Answers   SoftSquare,


Hi friends Does anyone have screen shot of POWERMHS and please can anyone post anything which will be helpful to understand POWERMHS. thanks.

0 Answers  


FOR what type of prjects we r using automation,why?

4 Answers   Exalt,


What makes a good QA or Test Manager?

1 Answers   Crea,


In the place of button developer use image, during the tab movements image(button) is not highlighted is it bug or not?

6 Answers  


Categories