Faqs
Faqs
Faqs
testing and what are things that we need to test in such applications?
Ans:
Projects are broadly divided into two types of:
• 2 tier applications
• 3 tier applications
CLIENT / SERVER TESTING
This type of testing usually done for 2 tier applications (usually developed for
LAN)
Here we will be having front-end and backend.
The application launched on front-end will be having forms and reports which will
be monitoring and manipulating data
E.g: applications developed in VB, VC++, Core Java, C, C++, D2K, PowerBuilder
etc.,
The backend for these applications would be MS Access, SQL Server, Oracle,
Sybase, Mysql, Quadbase
The tests performed on these types of applications would be
- User interface testing
- Manual support testing
- Functionality testing
- Compatibility testing & configuration testing
- Intersystem testing
WEB TESTING
This is done for 3 tier applications (developed for Internet / intranet / xtranet)
Here we will be having Browser, web server and DB server.
The applications accessible in browser would be developed in HTML, DHTML, XML,
JavaScript etc. (We can monitor through these applications)
Applications for the web server would be developed in Java, ASP, JSP, VBScript,
JavaScript, Perl, Cold Fusion, PHP etc. (All the manipulations are done on the web
server with the help of these programs developed)
The DBserver would be having oracle, sql server, sybase, mysql etc. (All data is
stored in the database available on the DB server)
The tests performed on these types of applications would be
- User interface testing
- Functionality testing
- Security testing
- Browser compatibility testing
- Load / stress testing
- Interoperability testing/intersystem testing
- Storage and data volume testing
A web-application is a three-tier application.
This has a browser (monitors data) [monitoring is done using html, dhtml, xml,
javascript]-> webserver (manipulates data) [manipulations are done using
programming languages or scripts like adv java, asp, jsp, vbscript, javascript, perl,
coldfusion, php] -> database server (stores data) [data storage and retrieval is
done using databases like oracle, sql server, sybase, mysql].
The types of tests, which can be applied on this type of applications,
are:
1. User interface testing for validation & user friendliness
2. Functionality testing to validate behaviors, i/p, error handling, o/p,
manipulations, services levels, order of functionality, links, content of web page &
backend coverage’s
3. Security testing
4. Browser compatibility
5. Load / stress testing
6. Interoperability testing
7. Storage & data volume testing
A client-server application is a two tier application.
This has forms & reporting at front-end (monitoring & manipulations are done)
[using vb, vc++, core java, c, c++, d2k, power builder etc.,] -> database server at
the backend [data storage & retrieval) [using ms access, sql server, oracle,
sybase, mysql, quadbase etc.,]
The tests performed on these applications would be
1. User interface testing
2. Manual support testing
3. Functionality testing
4. Compatibility testing
5. Intersystem testing
Some more points to clear the difference between client server, web and
desktop applications:
Desktop application:
1. Application runs in single memory (Front end and Back end in one place)
2. Single user only
Client/Server application:
1. Application runs in two or more machines
2. Application is a menu-driven
3. Connected mode (connection exists always until logout)
4. Limited number of users
5. Less number of network issues when compared to web app.
Web application:
1. Application runs in two or more machines
2. URL-driven
3. Disconnected mode (state less)
4. Unlimited number of users
5. Many issues like hardware compatibility, browser compatibility, version
compatibility, security issues, performance issues etc.
As per difference in both the applications come where, how to access the
resources. In client server once connection is made it will be in state on
connected, whereas in case of web testing http protocol is stateless, then there
comes logic of cookies, which is not in client server.
For client server application users are well known, whereas for web application
any user can login and access the content, he/she will use it as per his intentions.
So, there are always issues of security and compatibility for web application.
What is Cookie?
Cookie is small information stored in text file on user’s hard drive by web server.
This information is later used by web browser to retrieve information from that
machine. Generally cookie contains personalized user data or information that is
used to communicate between different web pages.
Why Cookies are used?
Cookies are nothing but the user’s identity and used to track where the user
navigated throughout the web site pages. The communication between web
browser and web server is stateless.
For example if you are accessing domain http://www.example.com/1.html then
web browser will simply query to example.com web server for the page 1.html.
Next time if you type page as http://www.example.com/2.html then new request is
send to example.com web server for sending 2.html page and web server don’t
know anything about to whom the previous page 1.html served.
What if you want the previous history of this user communication with the web
server? You need to maintain the user state and interaction between web browser
and web server somewhere. This is where cookie comes into picture. Cookies
serve the purpose of maintaining the user interactions with web server.
How cookies work?
The HTTP protocol used to exchange information files on the web is used to
maintain the cookies. There are two types of HTTP protocol. Stateless HTTP and
Stateful HTTP protocol. Stateless HTTP protocol does not keep any record of
previously accessed web page history. While Stateful HTTP protocol do keep some
history of previous web browser and web server interactions and this protocol is
used by cookies to maintain the user interactions.
Whenever user visits the site or page that is using cookie, small code inside that
HTML page (Generally a call to some language script to write the cookie like
cookies in JAVAScript, PHP, Perl) writes a text file on users machine called cookie.
Here is one example of the code that is used to write cookie and can be placed
inside any HTML page:
Set-Cookie: NAME=VALUE; expires=DATE; path=PATH; domain=DOMAIN_NAME;
When user visits the same page or domain later time this cookie is read from disk
and used to identify the second visit of the same user on that domain. Expiration
time is set while writing the cookie. This time is decided by the application that is
going to use the cookie.
Generally two types of cookies are written on user machine.
1) Session cookies: This cookie is active till the browser that invoked the cookie
is open. When we close the browser this session cookie gets deleted. Some time
session of say 20 minutes can be set to expire the cookie.
2) Persistent cookies: The cookies that are written permanently on user
machine and lasts for months or years.
Where cookies are stored?
When any web page application writes cookie it get saved in a text file on user
hard disk drive. The path where the cookies get stored depends on the browser.
Different browsers store cookie in different paths. E.g. Internet explorer store
cookies on path “C:\Documents and Settings\Default User\Cookies”
Here the “Default User” can be replaced by the current user you logged in as. Like
“Administrator”, or user name like “Vijay” etc.
The cookie path can be easily found by navigating through the browser options. In
Mozilla Firefox browser you can even see the cookies in browser options itself.
Open the Mozila browser, click on Tools->Options->Privacy and then “Show
cookies” button.
How cookies are stored?
Lets take example of cookie written by rediff.com on Mozilla Firefox browser:
On Mozilla Firefox browser when you open the page rediff.com or login to your
rediffmail account, a cookie will get written on your Hard disk. To view this cookie
simply click on “Show cookies” button mentioned on above path. Click on
Rediff.com site under this cookie list. You can see different cookies written by
rediff domain with different names.
Site: Rediff.com Cookie name: RMID
Name: RMID (Name of the cookie)
Content: 1d11c8ec44bf49e0… (Encrypted content)
Domain: .rediff.com
Path: / (Any path after the domain name)
Send For: Any type of connection
Expires: Thursday, December 31, 2020 11:59:59 PM
Applications where cookies can be used:
1) To implement shopping cart:
Cookies are used for maintaining online ordering system. Cookies remember what
user wants to buy. What if user adds some products in their shopping cart and if
due to some reason user don’t want to buy those products this time and closes
the browser window? When next time same user visits the purchase page he can
see all the products he added in shopping cart in his last visit.
2) Personalized sites:
When user visits certain pages they are asked which pages they don’t want to
visit or display. User options are get stored in cookie and till the user is online,
those pages are not shown to him.
3) User tracking:
To track number of unique visitors online at particular time.
4) Marketing:
Some companies use cookies to display advertisements on user machines.
Cookies control these advertisements. When and which advertisement should be
shown? What is the interest of the user? Which keywords he searches on the site?
All these things can be maintained using cookies.
5) User sessions:
Cookies can track user sessions to particular domain using user ID and password.
Drawbacks of cookies:
1) Even writing Cookie is a great way to maintain user interaction, if user has set
browser options to warn before writing any cookie or disabled the cookies
completely then site containing cookie will be completely disabled and can not
perform any operation resulting in loss of site traffic.
2) Too many Cookies:
If you are writing too many cookies on every page navigation and if user has
turned on option to warn before writing cookie, this could turn away user from
your site.
3) Security issues:
Some times users personal information is stored in cookies and if someone hack
the cookie then hacker can get access to your personal information. Even
corrupted cookies can be read by different domains and lead to security issues.
4) Sensitive information:
Some sites may write and store your sensitive information in cookies, which
should not be allowed due to privacy concerns.
This should be enough to know what cookies are. If you want more cookie info see
Cookie Central page.
Some Major Test cases for web application cookie testing:
The first obvious test case is to test if your application is writing cookies properly
on disk. You can use the Cookie Tester application also if you don’t have any web
application to test but you want to understand the cookie concept for testing.
Test cases:
1) As a Cookie privacy policy make sure from your design documents that no
personal or sensitive data is stored in the cookie.
2) If you have no option than saving sensitive data in cookie make sure data
stored in cookie is stored in encrypted format.
3) Make sure that there is no overuse of cookies on your site under test.
Overuse of cookies will annoy users if browser is prompting for cookies more often
and this could result in loss of site traffic and eventually loss of business.
4) Disable the cookies from your browser settings: If you are using cookies on
your site, your sites major functionality will not work by disabling the cookies.
Then try to access the web site under test. Navigate through the site. See if
appropriate messages are displayed to user like “For smooth functioning of this
site make sure that cookies are enabled on your browser”. There should not be
any page crash due to disabling the cookies. (Please make sure that you close all
browsers, delete all previously written cookies before performing this test)
5) Accepts/Reject some cookies: The best way to check web site functionality
is, not to accept all cookies. If you are writing 10 cookies in your web application
then randomly accept some cookies say accept 5 and reject 5 cookies. For
executing this test case you can set browser options to prompt whenever cookie is
being written to disk. On this prompt window you can either accept or reject
cookie. Try to access major functionality of web site. See if pages are getting
crashed or data is getting corrupted.
6) Delete cookie: Allow site to write the cookies and then close all browsers and
manually delete all cookies for web site under test. Access the web pages and
check the behavior of the pages.
7) Corrupt the cookies: Corrupting cookie is easy. You know where cookies are
stored. Manually edit the cookie in notepad and change the parameters to some
vague values. Like alter the cookie content, Name of the cookie or expiry date of
the cookie and see the site functionality. In some cases corrupted cookies allow to
read the data inside it for any other domain. This should not happen in case of
your web site cookies. Note that the cookies written by one domain say rediff.com
can’t be accessed by other domain say yahoo.com unless and until the cookies
are corrupted and someone trying to hack the cookie data.
8 ) Checking the deletion of cookies from your web application page:
Some times cookie written by domain say rediff.com may be deleted by same
domain but by different page under that domain. This is the general case if you
are testing some ‘action tracking’ web portal. Action tracking or purchase tracking
pixel is placed on the action web page and when any action or purchase occurs by
user the cookie written on disk get deleted to avoid multiple action logging from
same cookie. Check if reaching to your action or purchase page deletes the cookie
properly and no more invalid actions or purchase get logged from same user.
9) Cookie Testing on Multiple browsers: This is the important case to check if
your web application page is writing the cookies properly on different browsers as
intended and site works properly using these cookies. You can test your web
application on Major used browsers like Internet explorer (Various versions),
Mozilla Firefox, Netscape, Opera etc.
10) If your web application is using cookies to maintain the logging state of
any user then log in to your web application using some username and
password. In many cases you can see the logged in user ID parameter directly in
browser address bar. Change this parameter to different value say if previous user
ID is 100 then make it 101 and press enter. The proper access message should be
displayed to user and user should not be able to see other users account.
What is BVT?
Build Verification test is a set of tests run on every new build to verify that build is
testable before it is released to test team for further testing. These test cases are
core functionality test cases that ensure application is stable and can be tested
thoroughly. Typically BVT process is automated. If BVT fails that build is again get
assigned to developer for fix.
BVT is also called smoke testing or build acceptance testing (BAT)
5) Have some penalties for breaking the build Some chocolates or team
coffee party from developer who breaks the build will do.
Conclusion:
BVT is nothing but a set of regression test cases that are executed each time for
new build. This is also called as smoke test. Build is not assigned to test team
unless and until the BVT passes. BVT can be run by developer or tester and BVT
result is communicated throughout the team and immediate action is taken to fix
the bug if BVT fails. BVT process is typically automated by writing scripts for test
cases. Only critical test cases are included in BVT. These test cases should ensure
application test coverage. BVT is very effective for daily as well as long term
builds. This saves significant time, cost, resources and after all no frustration of
test team for incomplete build.
<!--
var theForm = document.forms['aspnetForm'];
if (!theForm) {
theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
// -->
Welcome to MSDN Blogs Sign in | Join | Help
Searc
h
• Home
• Email
• RSS 2.0
• Atom 1.0
Recent Posts
• Did you know… You can sort objects and members in the Object Browser? -
#221
• Did you know… There are two primary means of searching for objects in the
Object Browser? - #220
• Did you know… You can show Extension Methods in the Object Browser -
#219
• Did you know… How to stop displaying all inherited members in the Object
Browser member pane - #218
• Did you know… What consists of “other” in Show Other Members in Object
Browser Settings? - #217
Tags
• Accessibility
• CodePlex
• Editor
• Hurricane Katrina and Waveland
• Hurricane Katrina and Waveland, MS
• Karate
• Miscellaneous
• MS
• Personal
• Power Toys as Shared Source @ Microsoft
• Software Testing
• Visual Studio 2005 Tip of the Week
• Visual Studio 2008 Astuces
• Visual Studio 2008 Tip of the Day
• Visual Studio 2008 ワンポイント
• VS Window Docking
• VSCore Community PowerToys
• Whidbey VS Settings
News
•
• Talk To Me
• Biography
• Disclaimer
• Recommend a Visual Studio Tip of the Week
• Contact Me
• Recent Entries
• Did you know… You can sort objects and members in the Object
Browser? - #221
• Did you know… There are two primary means of searching for objects
in the Object Browser? - #220
• Did you know… You can show Extension Methods in the Object
Browser - #219
• Did you know… How to stop displaying all inherited members in the
Object Browser member pane - #218
• Did you know… What consists of “other” in Show Other Members in
Object Browser Settings? - #217
• Top Picks
• Visual Studio 2005 Tip of the Week Archives
• How i got started in Computer Science
• Guidelines: a hidden feature for the Visual Stuido Editor
• Developing a test specification
• Automation Testing versus Manual Testing Guidelines
• Fundamentals of Accessibility
• Testing for Accessibility (MSDN)
• Channel 9 Videos
• Accessibility and Visual Studio
• Are there some misperceptions of working at Microsoft that you'd like
to correct?
• What does it mean to test?
• How many bugs a day do you find?
• Who decides who wins between a developer and a tester?
• Introduction to DevDiv’s Test Case Management System
• Investigating a test case failure in the lab
• Analyzing a Test Case Failure
• Finding and Logging a Bug
•
Archives
• May 2008 (19)
• April 2008 (29)
• March 2008 (24)
• February 2008 (26)
• January 2008 (34)
• December 2007 (24)
• November 2007 (27)
• October 2007 (26)
• September 2007 (25)
• August 2007 (26)
• July 2007 (7)
• June 2007 (1)
• May 2007 (8)
• April 2007 (3)
• March 2007 (6)
• February 2007 (2)
• January 2007 (5)
• December 2006 (5)
• October 2006 (8)
• September 2006 (1)
• August 2006 (5)
• July 2006 (9)
• June 2006 (13)
• May 2006 (11)
• April 2006 (5)
• March 2006 (7)
• February 2006 (7)
• January 2006 (11)
• December 2005 (3)
• November 2005 (12)
• October 2005 (26)
• September 2005 (29)
• August 2005 (19)
• July 2005 (10)
• June 2005 (26)
• May 2005 (24)
• April 2005 (27)
• March 2005 (15)
• February 2005 (6)
• January 2005 (13)
• December 2004 (8)
• November 2004 (7)
• October 2004 (4)
• September 2004 (6)
• August 2004 (8)
• July 2004 (1)
• June 2004 (11)
• May 2004 (14)
• April 2004 (14)
• March 2004 (8)
• February 2004 (3)
• January 2004 (11)
Comments
Regards,
Bruce McLeod
bruce at teknologika dot com
# February 8, 2005 3:37 AM
Brian said:
Thanks. In my position I have been mulling this over for a while. I think i will have
use for your framework. I was just assigned another product of ours and I need to
decide what I can and should automate.
# February 8, 2005 9:27 AM
Stephane R said:
Automation makes you capitalize on invariants, hence test families. But what
about adapting to the slightest changes in UIs? Do you simply throw a broken test
case to the trashcan, or do you fix it?
A big con of automation is that it doesn't find you any new bugs. If you want to
find those, you need to either find those yourself by hand, or rely on somebody
else's work.
Are you still using VisualTest for runs? How will that evolve will UIs going more
towards IDless controls in UIs?
# February 8, 2005 1:20 PM
"Do you simply throw a broken test case to the trashcan, or do you fix it?"
That's a good point about Automation that i missed in the above guidelines. There
is a cost with Automation to maintain the test case. Almost always, you fix the
test case, unless the app has changed in such a way that the test is no longer
valid. For example, say you test for a feature, but the feature is modified or cut,
then you would most likely destroy the test case. One good rule of thumb is don't
automate if you know the UI will be in flux. The slightest changes in UI can cause
automation to fail. When you know the UI has been finalized, excluding any fixes
to bugs, that's the time to automate.
"A big con of automation is that it doesn't find you any new bugs."
I disagree with this statement. The point of automation is to find regressions.
Regressions are bugs that appear because of some change in the code. For
example, say a developer fixes a bug, but because of the bug fix, another bug
appears, the second bug is called a regression.
Thanks,
-sara
# February 9, 2005 10:32 AM
Nilesh said:
Suppose you have 4 cycles of tetsing and last cycle is regerssion wherein you
would think of automating the tests.
First three cycles involve manual testing which include right from writing the test
cases to execution.
After sucuessful completion of first three cycles, automation plays its role then
during this regerssion all the manual testers would no longer be required as u
have hired automation specialists.
Would it be justified to fire them???
# February 28, 2005 1:27 AM
Ken Baker said:
Nilesh, I think the approach of manual testing all test cases for multiple passes
and then running those same test cases with automation for the final "phase" is
not a real world scenario.
Ideally most projects would have manual testing and automation going on at the
same time, or even have automation being coded before there is anything to test.
In an ideal and agile world, your automation for a feature under test should be
completed before the feature is code complete. This is an aspect of test driven
development. Also keep in mind that automation is not limited to GUI testing or
driving the application through GUI manipulation. That is, most people think of
GUI and they say UI. UIs encompass more than only GUIs. All testing requires UI in
that calling a function/method of a DLL or webservice is interacting with a UI (a
non-graphical UI).
So, if you have a detailed design spec or you practice Scrum or other agile/xp
methodologies, the QA people will know what is being devloped before it is done,
and they can code some automation prior to the functionality even being "code-
complete". It is up to the team/group to decide if the automation is run prior to
code complete and thus should pass once the feature goes in or if the automation
is run only after you know the feature goes in.
All the while, as Sara has already detailed and as is the crux of her blog entry
here, there are classifications of testing that make no sense to be automated.
Thus, each project has some balance to find between what is to be automated,
when to automated it, how it will be automated, who will automate it, and how is
manual testing complementing what is not being automated.
For too long many teams/groups have pictured QA in terms of how can automated
testing compliment manual testing and improve quality. In reality, automation
needs to have a larger and earlier focus and manual testing is the compliment to
fill the holes where it makes no sense time-wise, feature-wise, or skill-wise to
automate a test. ADditionally, manual testing may certainly be needed for tests to
be run that are planned to be implemented via automation at a later time, but
there will alsways be testing that won't be and shouldn't be automated.
# March 1, 2005 4:17 PM
Nilesh said:
Ken,
I got the gist of ur reply...But isn't manual testing necessary atleast for one pass?
Or should we automate all the passes??
Thanks
Nilesh
# March 2, 2005 1:05 AM
Nilesh said:
Ken,
I got the gist of ur reply...But isn't manual testing necessary atleast for one pass?
Or should we automate all the passes??
Thanks
Nilesh
# March 2, 2005 1:05 AM
Let's say we have an existing project that has been released. Now we plan a new
release with 6 new features and 4 bug fixes. Before we start work on this new
release we have no automated testing in place. How do we proceed?
Let's assume that is possible. You would still use manual testing to verify the bug
fixes and test for regressions around these bug fixes as well as around the new
features, though the depth of the automated testing could also be used to test for
regressions around the new features as well (though I would not recommend this).
The reason you wouldn't automate the testing of the bug fixes is actually the
same reason you probably wouldn't automate testing for regressions around the
addition of new features. Manual testing is good here because it is a form of one-
off smoke testing or adhoc testing, basically, to verify the bugs are fixed and
caused no regressions and that the new features did not create bugs near but
outside of them.
Now let's say it is not possible to have all your new automated testing complete
before there is testable code, maybe some is or maybe none is. Of course you
should sit around and not test completed code as you wait for automated tests to
be completed. This is one reason why all automated testing should also have
formal test cases. If you are ever waiting on automated tests, then these tests can
and should be run manually. This applies when and if your automation becomes
out dated as well, though there should be a strong emphasis on not letting
automated testing get out dated. So, in these cases we use manual testing where
we want to be using automated testing. Always keep in mind that one of the worst
things, in my opinion, that a QA person or team can do is let code-complete
features sit untested too long. So, if your automation is not ready...manual testing
is needed.
The other point buried in what I was saying up there is that there are types of
testing you will never automate. The first category of testing that you should not
automate is testing that does not require being repeated on a build-by-build,
daily, or weekly basis. (All of this is excluding load, performance and scalability
testing, of course).
There is a line above that should be "Of course you should *not* sit around and
not test completed code as you wait for automated tests to be completed."
# March 2, 2005 10:27 AM
Munuren said:
Nilesh,
# March 7, 2005 10:43 PM
Amol.
# March 8, 2005 11:00 PM
Mayur said:
Hi ,
So far you have only concentrated on execution part of testing...I want to know if
the planning part can be automated as well ?
# April 22, 2005 5:47 AM
Venkat said:
Hi...
Thanks for great Post..Some are asking when we have to automate?
As Saraford said, one should be cautious how automation is going to help our
testing in the next versions.
# May 12, 2005 10:37 PM
The tester gets more and more bored by his work. Before soon, he either 1) gets
depressed, 2) starts looking for another team/company. Both ways, productivity
dives and soon enough you loose working force in which you invested
education/training money.
:)
# May 31, 2005 10:26 PM
Sanjay K said:
really good stuff
# July 11, 2005 1:04 PM
shrinivas said:
Nice article , but the author should be more clear in explaining and if this one of
more depth , it would have been more useful for us.
If it is possible please give when should we plan automating the test cases
( during SRS or while creating Test Plans )
# September 30, 2005 4:56 AM
Sathya said:
This indeed great article, Can you suggest me in a typical Product/ application life
cycle (< 1 year) how much of effort required for writing test cases versus test
execution?
# October 20, 2005 7:26 AM
Sathya said:
This indeed great article, Can you suggest me in a typical Product/ application life
cycle (< 1 year) how much of effort required for writing test cases versus test
execution?
# October 20, 2005 7:27 AM
[email protected] said:
Hi,
There seems to be good knowledge sharing posts in your blogs. If you take my
opinon about Automation vs Manual then i would say that its not only monetary
factors or size of application that makes us to decide what to go for. What i think
that apart from these factors a Project Manager need to consider;
1. How much quality the development team delivers to the testers (Less bugs or
more bugs)?
2. What is the project deadline ?
3. How critical is the project ? Say if you are making an application for NASA than
you need to do manual and automation also and i would suggest that the
application should also be tested even if it goes live.
4. How familiar is the user with the technology ? (Novice / Beginner / Advanced)
5. What will be the users reaction if he finds a bug ? Say if the application goes
live and if the user discovers a bug then how will he handle it. Will he protect
himself from the bug and pray not to see that bug again (Eg. Win XP OS) or will he
stop the application and pick up the phone and will yell to the support team (Like
we do today with call center guys) which will definately make an impact on users
impression for vendors quality
And this list can go on . I think based on these factors and cost of resources
(money , labour , time)involved you can decide whether to go either for manual or
automation or both .
# October 25, 2005 3:21 AM
smitha said:
Very good one for a fresher to understand.
Can I have detail notes regarding Manual Vs Automation testing as i have to take
a session in my company for freshers. Pls help me out?
# October 28, 2005 5:51 AM
Sincerely,
David Gilbert
# November 26, 2005 8:18 AM
sa.rafee said:
hello sarafords,
I want know how to test in manaul give explain and please send some test case
which you have applied for any object like combo box;list box;edit text feild.
# December 11, 2005 2:08 AM
s.varaprasad said:
hi
iam very impressed about manual and automation .Can you explain detailed
explanation regarding the live environment in companies.
# February 22, 2006 6:11 AM
saritha said:
more notes about manual versus automated testing
# February 27, 2006 12:17 AM
First, I would like to thanks you for such a great and best differentiation between
Manual and Automated Testing.
Sara, could you give me some good ppt on this topic and on when to use which
tool in automation and some good tutorials on winrunner..
Many Thanks
God Bless You Sara
[email protected]
# March 20, 2006 3:26 PM
Abhilasha said:
I am new to testing field.Currently working as a developer from last 2 years and
want to shift to testing soon can any one provide me notes regrading testing from
basics.
my mail id id [email protected]
# April 6, 2006 4:45 AM
Sachin said:
I am new to testing field.Currently working in mech field and want to shift to
testing soon can any one provide me notes regrading testing from basics.
my mail id is [email protected]
# April 24, 2006 5:22 AM
srikant said:
Hi Sara,
I am very much impressed with this topic.Its really a time to appreciate u r
topic.According to my point of view i think tools cannot be intellegent than human
brains.Rather manual testing takes time to complete the testing but its
reliable,whereas automation tools leaves behind some important bugs which are
difficult to find by tools.Tools are needed during the time of testing the load and
performance.Is this section gives a point of view.If so pls feel free to send any
comments.
My mail id is:[email protected]
[email protected]
# May 1, 2006 2:03 AM
harry said:
Sir/Madam,
This time i am workin in softare company they put me on Manual
Testing.Here is not Automated Testing.Are there scope of Manual testing.Please
Suggest me.My Email ID is [email protected]
# May 5, 2006 8:15 AM
sameer said:
Hi Sara,
This is a good artical and I am impresed. Sara, currently I am doing Manual
testing on Web Applications. Please guide me should I shift to Automation testing
and which is the right tool for that. And will you please tell me should I go for the
CSTE exam though I am doing manual testing.
my mail Id is : - [email protected] or
[email protected]
Thank you
Sameer
# May 11, 2006 7:51 AM
Quest:-How Can we apply manual testing on web based parojat or like java based
project.
Thanks
mam
# June 1, 2006 8:56 AM
sarithareddymeda said:
hi sara,
i am very new to the testing enviornment specially manual , what are the
intiatiives need to be taken to make myself perfect on manual testing, and can
you please list out the websites which quote examples of manual testing.
thank u
# June 5, 2006 3:25 AM
saikishore said:
Hello sara iam saikishore iam trying for a break in software testing nearly i have
attended 25 interviews but couldnot get any initial break and iam mailing some of
the interview questions on testing if you have answers for them please
reply me and waiting for your response
thanking you
Account number =
Ok cancel
For above given form the valid account number starts from 1 to 1000 so is it
necessary to input the 1,2,3
….998,999,1000 test cases to check the conditions of valid account numbers I,e
is it compulsory to write 1000 test cases for the above form
6. For example: employee dept and employee id and employee name and
employee salary
7. what is a sub and what is a driver
8. What are your roles and responsibilities in your project
9. Does BVA is equivalent to ECP
10. If you find a bug what will you do
7) Regression Testing:
a) Tests how well the program runs with Adverse data
b) Tests program input branches
c) Selective retesting to verify modifications have not cause adverse effects
d) Testing data during requirements phase
10)A system test that forces the software to fail in a variety of ways and verifies
that software is able to continue execution without interruption. This definition is
nearest to;
a) Recovery testing
b) Stress Testing
c) Both of the above
e) None of the above
12) which of the following tests is performed early in a software testing process
a)Monkey testing
b)Unit testing
c)System testing
d)None of the above
13)The testing technique that requires devising test cases to demonstrate that
each program function is operational is called
a) Black box testing
b) Glass-box testing
c) Grey-Box testing
d) White-Box Testing
15) What kind of tools would you suggest to use the automation of regression
tests
a) Capture and play back
b) Static analysis
c) Simulators
e) Debugging tools
Basics of Winrunner
3) To start recording on a Web based application using win runner and IE ; What of
these is the best practice
a) You have to shut down all Open IE sessions, open the application and then open
win runner
b) You have to shut down all Open IE sessions, open win runner and then open the
application
c) Open application and then open win runner
d) Open win runner and then open the application
5)You have executed a tl_step function in TSL for a context sensitve case . if
thecondition fails]
a)winrunner report shows the whole Run as failed
b)winrunner report shows only that step has failed
c)winrunner report ignores the failure
d)None of the above
a)”!.India
b)”!.*India
c)”!India
e) all of the above
f) none of the above
Account no: 1
Account no: 2
Ok Cancel
4. what is V model
5. What is BUG life cycle
6. What is alpha testing and beta alpha testing
7. What is verification testing and validation testing
8. What are ISO and CMM standards levels
9. Which should be given more preference I.e. severity or priority ?
10. How to use the test director in your project
11. What is use of recovery manager in QTP
12. What are the add ins in QTP
13. What are expressions in QTP
14. if the developers are not convinced with your bug in this case what will you do
15. if the developers are developing the application then what is the job assigned
to the testers
16. What is system testing
17. What is smoke testing
18. What is sanity testing
19. What is sanitation testing
# June 13, 2006 4:46 AM
venkatesalu said:
Hi, I am venky. I would like to know some sites regarding Manual testing tat will
guide me. I wish to know sites that allowsme to practice Manual testing with
samples and other stuff.
# June 13, 2006 7:12 AM
Amit said:
Hi,
I am new to testing, could you please tell me how is a manual testing done in a
real life situation,starting from initiation to execution.Also how is a test case
run/tested manually.
Thanks.
# June 13, 2006 12:58 PM
thanks much
# July 17, 2006 2:27 PM
Dhatchayini said:
can u tellme which is going to rule in future? Manual testing r Automation Testing
# July 18, 2006 5:39 AM
How do you answer this question if you were me as I am totally new to testing
feild
Q1- Can you explain your experience with writing test scripts from scratch using
automation tools such as Silktest, Winrunner, Test Director, SilkPerformer,
homegrown, etc).
Q2- Can you explain your experience with, and philosophy about, creating an
architecture/harness for automated tests. What was the hardest thing about
implementing it?
# July 18, 2006 5:21 PM
shivappa said:
Dear Sir/madam,
Thanking you.
Yours faithfully,
Shivappa.Seemikeri
Cell No:9880058464
Enclr:Resume
# July 25, 2006 6:56 AM
tahir said:
Hi,
sree said:
No Problem
# August 15, 2006 11:09 AM
Shivani said:
Hi, Ms. Sara
Thanks for this guidance, i am new to this feild,i really appreciate your
notes.Please provide some more information if possible on Software Testing.
Regards
Shivani
# August 16, 2006 4:30 AM
Sheetal said:
Hi Sara & All,
Its really great to know how u all are asking & sharing ur questions on the Board.
From now onward I also want to become the part of the family.
Regards,
Sheetal
# August 20, 2006 12:53 AM
Raj kumar
# August 20, 2006 11:46 PM
Ankur said:
Hi,
Need notes on software testing. Further if i cud get some scripts that automate
testing. I am new to this so if u cud help me.
# August 23, 2006 2:20 AM
Manav said:
Hi, Ms. Sara,
A great article. Well incase if u have notes on Software Testing and Samples of
Automation Script. I would like to receive one. They will really help me to further
understand and enhance my knowledge. Also using them i can enhance my skills.
Please guide and help me...
Thanking You,
Manav
emailid: [email protected]
# August 23, 2006 2:26 AM
If you or any one have notes about both Manual and Automated testing, please
provide me. That should be very helpful to me and would be great.
Srinivasan said:
hi sara
regards
srinivasan
# August 29, 2006 3:55 AM
vasanthbabu said:
Hi, Ms. Sara ,
hello sarafords,
Its really very interesting to go on reading ur views and
suggestion for the Others Querys and i am very much impressed with the software
testing and i had joined the software testing course recently and i dont know abt
anything but i have an interest to get good knowledge in testing field and i
develop myself but there is no guidence for me until i seen ur website and i dont
worry now since u r now with me So please help me mam and I want know how to
test in manaul give explain and please send some test case which you have
applied for any object like combo box;list box;edit text field and I am very
impressed about manual and automation .Can you explain detailed explanation
regarding the live environment in companies and Can you send some good
tutorials on winrunner..and Especially i am very new to the testing enviornment
specially manual , what are the intiatiives need to be taken to make myself
perfect on manual testing, and can you please list out the websites which quote
examples of manual testing and i would like to know some sites regarding to
practice Manual testing with samples and other stuff
# September 16, 2006 4:06 PM
Account number =
Ok cancel
For above given form the valid account number starts from 1 to 1000 so is it
necessary to input the 1,2,3
….998,999,1000 test cases to check the conditions of valid account numbers I,e
is it compulsory to write 1000 test cases for the above form
6. For example: employee dept and employee id and employee name and
employee salary
7. what is a sub and what is a driver
8. What are your roles and responsibilities in
[email protected]
cell:9949035183
# September 18, 2006 11:55 AM
Account no: 1
Account no: 2
Ok Cancel
4. what is V model
5. What is BUG life cycle
6. What is alpha testing and beta alpha testing
7. What is verification testing and validation testing
8. What are ISO and CMM standards levels
9. Which should be given more preference I.e. severity or priority ?
10. How to use the test director in your project
11. What is use of recovery manager in QTP
12. What are the add ins in QTP
13. What are expressions in QTP
14. if the developers are not convinced with your bug in this case what will you do
15. if the developers are developing the application then what is the job assigned
to the testers
16. What is system testing
17. What is smoke testing
18. What is sanity testing
19. What is sanitation testing