-
Recent Posts
Top Posts & Pages
Tags
- Follow Code for Hire on WordPress.com
Category Archives: Testing
Hybrid app testing using dynamic DNS
Hybrid apps simplify implementing cross-platform mobile applications in many ways. You only need to write the HTML once, and it should work on all platforms. However, you still need to test those platforms. At Wellmo, we do most of our … Continue reading
Testing visual appearance with Cucumber + Watir
One of the great things about Cucumber and Watir is that it allows you to write functional tests that are decoupled of the UI. By using page objects, the definition of how the UI works is decoupled from the tests … Continue reading
Posted in CSS, Cucumber, Testing, Watir-Webdriver, Web
Tagged css, cucumber, watir-webdriver
Leave a comment
Testing time-dependent features in JavaScript
Many applications use the current time in their functionality. For example, they can show data for a certain period of time or show the current date within the application. Writing functional tests for such applications can be tedious. How do … Continue reading
Documenting Cucumber steps
One of the great things in Cucumber testing is that as you go along, you start to accumulate ready step definitions, which makes writing new tests even faster. Several times I’ve actually been surprised that a definition for a step … Continue reading
Dump World on failure
One of the most important aspects of test reports is that when something fails, you can easily debug what went wrong. Splitting tests into logical, small tests that exercise a single functionality in the system goes a long way toward … Continue reading