{"id":173619,"date":"2016-09-06T08:14:20","date_gmt":"2016-09-06T12:14:20","guid":{"rendered":"http:\/\/www.euvolution.com\/prometheism-transhumanism-posthumanism\/test-automation-wikipedia-the-free-encyclopedia\/"},"modified":"2016-09-06T08:14:20","modified_gmt":"2016-09-06T12:14:20","slug":"test-automation-wikipedia-the-free-encyclopedia","status":"publish","type":"post","link":"https:\/\/www.euvolution.com\/prometheism-transhumanism-posthumanism\/automation\/test-automation-wikipedia-the-free-encyclopedia\/","title":{"rendered":"Test automation &#8211; Wikipedia, the free encyclopedia"},"content":{"rendered":"<p><p>      In software testing, test      automation is the use of special software (separate from the software      being tested) to control the execution of tests and the      comparison of actual outcomes with predicted      outcomes.[1] Test automation can automate      some repetitive but necessary tasks in a formalized testing      process already in place, or perform additional testing that      would be difficult to do manually. Test automation is      critical for continuous delivery and continuous testing.    <\/p>\n<p>      Some software testing tasks, such as      extensive low-level interface regression testing, can be laborious      and time-consuming to do manually. In addition, a manual      approach might not always be effective in finding certain      classes of defects. Test automation offers a possibility to      perform these types of testing effectively. Once automated      tests have been developed, they can be run quickly and      repeatedly. Many times, this can be a cost-effective method      for regression testing of software products that have a long      maintenance life. Even minor patches over the lifetime of the      application can cause existing features to break which were      working at an earlier point in time.    <\/p>\n<p>      There are many approaches to test automation, however below      are the general approaches used widely:    <\/p>\n<p>      Test automation tools can be expensive, and are usually      employed in combination with manual testing. Test automation      can be made cost-effective in the long term, especially when      used repeatedly in regression testing.[citation      needed]    <\/p>\n<p>      In automated testing the Test Engineer or Software quality assurance      person must have software coding ability, since the test      cases are written in the form of source code which, when run,      produce output according to the assertions that are a part of it.    <\/p>\n<p>      One way to generate test cases automatically is model-based testing through use of      a model of the system for test case generation, but research      continues into a variety of alternative methodologies for      doing so.[citation      needed] In some cases, the model-based      approach enables non-technical users to create automated      business test cases in plain English so that no programming      of any kind is needed in order to configure them for multiple      operating systems, browsers, and smart devices.[2]    <\/p>\n<p>      What to automate, when to automate, or even whether one      really needs automation are crucial decisions which the      testing (or development) team must make. Selecting the      correct features of the product for automation largely      determines the success of the automation. Automating unstable      features or features that are undergoing changes should be      avoided.[3]    <\/p>\n<p>      A growing trend in software development is the use of testing      frameworks such as the xUnit frameworks (for example, JUnit and NUnit) that allow the      execution of unit tests to determine whether various      sections of the code      are acting as expected under various circumstances. Test cases describe      tests that need to be run on the program to verify that the      program runs as expected.    <\/p>\n<p>      Test automation mostly using unit testing is a key feature of      agile software development,      where it is known as test-driven development      (TDD). Unit tests are written to define the functionality      before the code is written. However, these unit tests      evolve and are extended as coding progresses, issues are      discovered and the code is subjected to refactoring.[4] Only when all the      tests for all the demanded features pass is the code      considered complete. Proponents argue that it produces      software that is both more reliable and less costly than code      that is tested by manual exploration.[citation      needed] It is considered more reliable      because the code coverage is better, and because it is run      constantly during development rather than once at the end of      a waterfall development cycle. The      developer discovers defects immediately upon making a change,      when it is least expensive to fix. Finally, code      refactoring is safer when unit testing is used;      transforming the code into a simpler form with less code      duplication, but equivalent behavior, is much less likely to      introduce new defects when the refactored code is covered by      unit tests.    <\/p>\n<p>      Many test automation tools provide record and playback      features that allow users to interactively record user      actions and replay them back any number of times, comparing      actual results to those expected. The advantage of this      approach is that it requires little or no software development. This      approach can be applied to any application that has a      graphical user interface.      However, reliance on these features poses major reliability      and maintainability problems. Relabelling a button or moving      it to another part of the window may require the test to be      re-recorded. Record and playback also often adds irrelevant      activities or incorrectly records some activities.[citation      needed]    <\/p>\n<p>      A variation on this type of tool is for testing of web sites.      Here, the \"interface\" is the web page. However, such a      framework utilizes entirely different techniques because it      is rendering HTML and      listening to DOM Events instead of operating system      events. Headless browsers or solutions based      on Selenium Web      Driver are normally used for this purpose.[5][6][7]    <\/p>\n<p>      Another variation of this type of test automation tool is for      testing mobile applications. This is very useful given the      number of different sizes, resolutions, and operating systems      used on mobile phones. For this variation, a framework is      used in order to instantiate actions on the mobile device and      to gather results of the actions.[8][bettersourceneeded]    <\/p>\n<p>      Another variation is script-less test automation that does      not use record and playback, but instead builds a      model[clarification      needed] of the application and then      enables the tester to create test cases by simply inserting      test parameters and conditions, which requires no scripting      skills.    <\/p>\n<p>      API      testing is also being widely used by software testers due      to the difficulty of creating and maintaining GUI-based      automation testing. It involves directly testing APIs as part      of integration testing, to determine      if they meet expectations for functionality, reliability,      performance, and security.[9] Since APIs lack a      GUI, API testing is performed      at the message layer.[10] API testing is      considered critical when an API serves as the primary      interface to application logic      since GUI tests can be      difficult to maintain with the short release cycles and      frequent changes commonly used with agile software development      and DevOps.[11][12]    <\/p>\n<p>      Continuous testing is the process of      executing automated tests as part of the software delivery      pipeline to obtain immediate feedback on the business risks      associated with a software release candidate.[13][14] For Continuous      Testing, the scope of testing extends from validating      bottom-up requirements or user stories to assessing the      system requirements associated with overarching business      goals.[15]    <\/p>\n<p>      Testing tools can help automate tasks such as product      installation, test data creation, GUI interaction, problem      detection (consider parsing or polling agents equipped with      oracles, defect logging,      etc., without necessarily automating tests in an end-to-end      fashion.    <\/p>\n<p>      One must keep satisfying popular requirements when thinking      of test automation:    <\/p>\n<p>      A test automation framework is an integrated system that sets      the rules of automation of a specific product. This system      integrates the function libraries, test data sources, object      details and various reusable modules. These components act as      small building blocks which need to be assembled to represent      a business process. The framework provides the basis of test      automation and simplifies the automation effort.    <\/p>\n<p>      The main advantage of a framework of assumptions,      concepts and tools that provide support for automated      software testing is the low cost for maintenance. If there is change to      any test case      then only the test case file needs to be updated and the      driver Script and      startup script will remain the same.      Ideally, there is no need to update the scripts in case of      changes to the application.    <\/p>\n<p>      Choosing the right framework\/scripting technique helps in      maintaining lower costs. The costs associated with test      scripting are due to development and maintenance efforts. The      approach of scripting used during test automation has effect      on costs.    <\/p>\n<p>      Various framework\/scripting techniques are generally used:    <\/p>\n<p>      The Testing framework is responsible for:[16]    <\/p>\n<p>      Test automation interface are platforms that provide a single      workspace for      incorporating multiple testing tools and frameworks for      System\/Integration testing of      application under test. The goal of Test Automation Interface      is to simplify the process of mapping tests to business      criteria without coding coming in the way of the process.      Test automation interface are expected to improve the      efficiency and flexibility of maintaining test      scripts.[17]    <\/p>\n<p>      Test Automation Interface consists of the following core      modules:    <\/p>\n<p>      Interface engines are built on top of Interface Environment.      Interface engine consists of a parser and a test runner.      The parser is present to parse the object files coming from      the object repository into the test specific scripting      language. The test runner executes the test scripts using a      test      harness.[17]    <\/p>\n<p>      Object repositories are a collection of UI\/Application object      data recorded by the testing tool while exploring the      application under test.[17]    <\/p>\n<p>      Tools are specifically designed to target some particular      test environment, such as Windows and web automation tools,      etc. Tools serve as a driving agent for an automation      process. However, an automation framework is not a tool to      perform a specific task, but rather an infrastructure that      provides the solution where different tools can do their job      in a unified manner. This provides a common platform for the      automation engineer.    <\/p>\n<p>      There are various types of frameworks. They are categorized      on the basis of the automation component they leverage. These      are:    <\/p>\n<p><!-- Auto Generated --><\/p>\n<p>See the original post: <\/p>\n<p><a target=\"_blank\" rel=\"nofollow\" href=\"https:\/\/en.m.wikipedia.org\/wiki\/Test_automation\" title=\"Test automation - Wikipedia, the free encyclopedia\">Test automation - Wikipedia, the free encyclopedia<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p> In software testing, test automation is the use of special software (separate from the software being tested) to control the execution of tests and the comparison of actual outcomes with predicted outcomes.[1] Test automation can automate some repetitive but necessary tasks in a formalized testing process already in place, or perform additional testing that would be difficult to do manually. Test automation is critical for continuous delivery and continuous testing. Some software testing tasks, such as extensive low-level interface regression testing, can be laborious and time-consuming to do manually <a href=\"https:\/\/www.euvolution.com\/prometheism-transhumanism-posthumanism\/automation\/test-automation-wikipedia-the-free-encyclopedia\/\">Continue reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[187732],"tags":[],"class_list":["post-173619","post","type-post","status-publish","format-standard","hentry","category-automation"],"_links":{"self":[{"href":"https:\/\/www.euvolution.com\/prometheism-transhumanism-posthumanism\/wp-json\/wp\/v2\/posts\/173619"}],"collection":[{"href":"https:\/\/www.euvolution.com\/prometheism-transhumanism-posthumanism\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.euvolution.com\/prometheism-transhumanism-posthumanism\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.euvolution.com\/prometheism-transhumanism-posthumanism\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.euvolution.com\/prometheism-transhumanism-posthumanism\/wp-json\/wp\/v2\/comments?post=173619"}],"version-history":[{"count":0,"href":"https:\/\/www.euvolution.com\/prometheism-transhumanism-posthumanism\/wp-json\/wp\/v2\/posts\/173619\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.euvolution.com\/prometheism-transhumanism-posthumanism\/wp-json\/wp\/v2\/media?parent=173619"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.euvolution.com\/prometheism-transhumanism-posthumanism\/wp-json\/wp\/v2\/categories?post=173619"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.euvolution.com\/prometheism-transhumanism-posthumanism\/wp-json\/wp\/v2\/tags?post=173619"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}