Tag: <span>automation</span>

Leveraging Exploratory Testing for your DevOps Needs

10/13/2015
Posted by
0

As DevOps continues to expand, understanding how each team’s function contributes to your end goal is imperative. When looking at QA, it is tempting to push for your testing to be 100% automation.  After all, if automation means you’re hitting your test case completion goal faster, who’s complaining? The problem lies in the assumption that there…

Read more

Cucumber 101: How Does Cucumber Automated Testing Work ?

06/04/2014
Posted by
0

This uptick in Cucumber usage has been triggered by a variety of factors – increased Agile adoption, Cucumber’s easy to understand natural language syntax, support for TDD, BDD, etc. As the level of interest and Skepticism (The “This is too good to be true” crowd) rises, one of the many questions we’re constantly asked is “How does Cucumber Work”?

Read more

Scale Your Automation with Watir WebDriver Implicit Waits

05/09/2014
Posted by
0

As the volume of your Regression Test Automation assets grows it becomes imperative to build your automation in a way that is scalable and dependable. Sleep functions and explicit waits, wherein the script waits for a pre-defined period duration (e.g. 10 seconds) creates a slow running test, which is not ideal for a variety of reasons. Try scaling your automation with Watir WebDriver implicit waits.

Read more

Debug Watir Webdriver Scripts with Pry

05/08/2014
Posted by
0

Pry is a powerful alternative to the standard IRB shell for Ruby, featuring syntax highlighting, a flexible plugin architecture, runtime invocation, and source and documentation browsing. Using Pry to Debug Watir Webdriver scripts is intrinsically the same as using IRB but one of the main advantages of Pry is the ability to invoke it in the middle of a running program.

Read more

Designing for Automation: Use the ‘title’ attribute to mark sections.

07/30/2013
Posted by
0

Webdriver doesn’t recognize element attributes not part of the HTML definitions.   So aria-xxxx and dojo-xxx attributes are much slower to locate in the DOM.   Whenever one of the standard attributes can carry a unique value on the page that describes a business object or function directly understandable to a business user, automation will be easier…

Read more

Designing for Automation: Use the ‘title’ attribute to mark sections.

Webdriver doesn’t recognize element attributes not part of the HTML definitions.   So aria-xxxx and dojo-xxx attributes are much slower to locate in the DOM.   Whenever one of the standard attributes can carry a unique value on the page that describes a business object or function directly understandable to a business user, automation will be easier…

Read more