Bugs de la vida cotidiana

Día a día vamos conviviendo con diferentes bugs, basta con prender la televisión, leer un diario, ir de shopping o simplemente salir a caminar para encontrarnos con distintos tipos de bugs de la vida cotidiana.
Como tester nos vamos dando cuenta de los mismos. En el siguiente post les comparto algunos de ellos.
Me gusta ver noticieros, leer diarios, escuchar radio para mantenerme informado sobre las distintas noticias nacionales y provinciales.
En la tele podemos ver algunos de los bugs de la vida cotidiana.
              
Hay casos donde el apuro es tal, que la información llega al usuario sin haber sido debidamente verificada.
Los diarios son un ejemplo de ello. Publicar una primicia es vital, y eso conlleva a que el tiempo de testing sea mínimo o nulo.
En diarios online, vemos con frecuencia errores ortográficos; errores de UI entre otros.
A menudo oímos la frase “construir es un dolor de cabeza”.  Quien ha construido observa muchas imperfecciones o terminaciones que no tienen el nivel de calidad que uno desearía, pero otras veces nos encontramos con verdaderos bugs. Este es el caso de un video que se hizo viral en las redes sociales. Unos obreros soldando un perfil a la pared usaron una escalera como sostén, pero omitieron un detalle importante, la escalera quedo atrapada en el perfil soldado.
Los negocios comerciales son una vidriera de bugs, muchos se excusan que estos errores son “técnicas de marketing”, como el caso de un amigo propietario de una panadería. Sorpresa la mía cuando fui a comprar y vi el cartel que tenia en la puerta del local.
Poco tiempo atrás en Mendoza se remodeló una plaza, la plaza San Martín. Esta misma trajo muchas críticas debido a que en las placas que rodean al monumento del general José de San Martín se puede leer “ Homenage a San Martín”, es decir con la letra “g” en lugar de la habitual “j” con la que se escribe la palabra.
Aunque este no ha sido el único error que se le ha visto cometer al gobierno.
Usar un medio electrónico para el pago de impuestos es algo frecuente hoy en día. El Home Banking es cómodo, rápido y simple de usar para los clientes del banco. Como vemos, la pantalla de ingreso posee un bug y es que el nombre está escrito con letra minúscula y sin acento. Desde la primaria nos enseñaron que los nombres de personas empiezan con mayúsculas.
Incluso la publicidad que recibimos en nuestro correo electrónico muchas veces contienen bugs.

 

 

Bueno, basta de bugs. Se viene el 20 de julio y es una buena excusa para juntarnos con amigos a comer y distendernos jugando un juego de mesa. El TEG es un juego de larga duración el cual es perfecto para la ocasión.
¿Un juego de mesa con un bug? Si, así es. En este caso se aprecia no solo una inconsistencia sino también un error, ya que en el planisferio México esta escrito con “equis” y en la tarjeta con “jota”.
Los humanos somos propensos a cometer errores, y si bien no todos los empleos cuentan con un área de QA podemos ver cuan importante es que otra persona verifique el trabajo que hemos realizado y así evitar errores.

8 Reasons Why Manual Testing is Still Important

The increase of test automation adoption has unjustly framed manual testing as an archaic and unnecessary practice. After watching an automation suite swiftly execute an entirely library of test cases, it can be easy to tunnel vision on the great benefits of automation. However, the value of manually executing your tests cannot be understated; here are a few reasons why manual is still relevant as ever.

Tape 1: Cycle Times

There’s no way around it; initial automation requires an increased investment in both, time & resources. You are setting up a foundation to continually benefit from in your future testing endeavors. However, in some cases, your automation efforts will not be the ideal solution for your testing.  Attempting to initialize automation while close to the end of your testing cycle would be a moot effort; the time you take to set up (and the sudden resource shift) means you’ll be nearing your release date before you can start running reliable and core automated testing. During that same timeframe, you could be focusing your testing resources towards manual execution. As the majority of their time is focused on test case validation, the end result is more coverage within your test cycle.

Tape 2: Even Your Automation Has Errors

Like any piece of code, your automation will contain errors (and fail). An error filled automation script may be misinterpreted as failed functionality in your tested application, or (even worse) your automation script will interpret an error as a correct functionality. Manually testing your core, critical-path functionality ensures that your test case is passing from a user perspective, with no room for misinterpretation.

Tape 3: UI Validations

The advent of automated testing platforms for Responsive and UI testing has provided a much appreciated convenience. However, it should be a boost to your UI testing efforts, not a crutch. These programs validate your test cases by checking element distance, image placement, and alignment of elements in relation to each other. Because of this, there are more than a dozen ways that something such as alignment between a menu and logo can be misinterpreted; a manual tester would immediately be able to catch something that looked “off”, and fail the test case.

Tape 4: Un-Automatable Scenarios:

Some scenarios are simply not feasible to automate; they are either actually impossible due to technological limitation + the complexity of the scenario, or the resource cost of automating it greatly outweighs the cost of a simple manual test. Case in point, we recently had a customer who needed to test their manual tap-and-pay function for their mobile wallet app. Developing a way to automate this scenario is not worth it when compared to manually testing it with your device.

Tape 5: (Short-Term) Cost

Over time, automation leads to cost savings, faster execution, and continous testing. In the immediate short term however, there is an investment cost (and learning curve for the unfamiliar) that can be a situational disadvantage. The cost of setting up and running your initial automation framework can range anywhere from 5-15x the cost of your manual testing endeavors. And as discussed earlier, implementing automation while crunched for time towards the end of a test cycle will not allow you to enjoy automation’s full potential. Choosing to conduct manual testing at this stage provides an immediate, tangible result from your testing resources.

Tape 6: Exploratory Testing

Exploratory testing describes the process of freely testing the application for the purpose of finding defects can`t subsequently designing new test cases. Defects found through exploratory testing are often the results of testing complex scenarios that would not have been addressed through your predefined test cases. Having a foundation of core, repeatable tests automated will free up time to designate resources towards exploratory testing.

Tape 7: Skills

While the end result of Automation is ease, the set up of framework and development of scripts are no easy tasks. An effective automator has a foundation of programming skills, as well as an inherent understanding of test design. These skills are learned over years of experience in both QA and Development, and acquiring somebody with these specific skillsets (especially on short notice) is not a simple process. On the other hand, the majority of Manual test cases are simple to execute and can easily be taught; follow the steps in the test case, and validate that your actual results are consistent with the expected results.

Tape 8: Agile

In the context of Agile testing, automation is of great benefit. Having a library of tests reliably and quickly executable truly helps with test completion & coverage during a tight sprint. By that same token, manual testing is a quick way to execute for any test cases that are not yet automated. There may be no time to build automation for new features introduced in the current build, making manual the best option for test completion.

As a conclusion, the need for increased test coverage across an ever increasing range of software and devices has made test automation more important than ever. As automation continues to grow, it can be easy to forget about the wide spectrum of benefits manual testing still has to offer. Appreciating the value of both approaches will make for a wholesome testing experience.