In this post we show you how to scroll through a table and identify elements. We also tackle the case where the table spans multiple pages. This is a natural and common workflow on most mobile devices. A typical use case involves the user performing a search within a mobile application. The app returns a table of results. The user […]
Python and Appium: Scroll through search result table
Android and Appium: Press Enter on the soft keyboard
Problem: Use Appium and press ‘Enter’ on the soft keyboard. This post continues our series on intermediate level problems when automating mobile application tests using Appium. We thought of sending a KeyEvent to an input (textbox) element using Appium. Superficially this appears to be trivial, but while writing the script, figured out otherwise. To our surprise, it failed. And there […]
Python Appium tests on different Android versions
Problem: UI element identifiers are not consistent across mobile platforms. Mobile is eating the world. However mobile operating systems are not yet fully mature. For example, UI element identifiers change between versions of the same OS. They also look different across Android and iOS. This causes automation scripts to be brittle. We hit this problem recently. We were writing automation […]
Cool things I read this week (22-Feb-2015)
I read. A lot. And I share the five best things I read every week. This week’s topics include Feynman on chess and science, a David Snowden blog post, a bug that ended a relationship, thoughts on WordPress and a cartoon. 1. Feynman on chess and science 2. Describe. Don’t evaluate 3. A bug that ended a relationship 4. Where […]
Cool things I read this week (15-Feb-2015)
I read. A lot. And I share the five best things I read every week. This week’s topics include the importance of communication in reducing error, a Elon Musk interview, Paul Graham on maker and manager schedules, Bayes theorem explained with legos and surprising post by Richard Branson. 1. John Nance on the importance of communication 2. Elon Musk interview […]
API Testing with Python Mechanize
This is the third part in our series on API testing. Rather than focus on traditional approaches to API testing, we have decided to arm you with tools that let you interact with the API at different levels of abstractions. In part I we showed you how to inspect the API calls of any web application. In part II, we […]
Cool things I read this week (08-Feb-2015)
I read. A lot. And I share the five best things I read every week. This week’s topics include thoughts from experts on different aspects of making good software, a site for canned emails, an interview with Karpov and an image from when Microsoft developers enjoyed working on Windows. 1. Dave Snowden on software processes 2. Gerald Weinberg on the […]
API Testing: UI Tools
In this post we will explore three UI tools you can use for API testing: Postman, SoapUI and Runscope. We do a deep dive into using Postman for API testing because we love using Postman. This post is the second in a series of blog posts on API testing. You can find the first part here. 1. Postman Postman is […]
Cool things I read this week (01-Feb-2015)
I read. A lot. And I share the five best things I read every week. This week’s topics are about testing, Apple, space exploration, science and a somewhat mathematical poem. 1. On the easy way and the fallacy of the simple 2. Apple’s original business plan 3. NASA mission to Europa! 4. Scott Adams on science and credibility 5. A […]
API Testing : Developer Tools
In this post we will show you how to use Developer Tools in your browser to inspect the API calls that your web application is making over the network. This post is the first in a series of posts on the following topics related to using APIs to test web applications: Using developer tools to check the API calls UI […]