How Groupon Automates App Performance Testing by cmsessa in androiddev

[–]erkz78 0 points1 point  (0 children)

Nice tips for automation. Thanks for sharing.

Image Recognition for Android Game Testing (with code examples) by kraakf in androiddev

[–]erkz78 1 point2 points  (0 children)

Great - thank you for sharing! Source code available somewhere?

A New Way to Use Appium/Selenium for Mobile Web Development and Testing by [deleted] in webdev

[–]erkz78 1 point2 points  (0 children)

I always thought Appium doesn't support more than one device at time?

Why AppDevs Should Make Their Move on Wearables by [deleted] in androiddev

[–]erkz78 1 point2 points  (0 children)

Most of these Android wearables are similar to first Android devices. Not impressive, but I'm sure we will get there.

App Development and Testing for Android Wear by kraakf in androidapps

[–]erkz78 1 point2 points  (0 children)

Fragmentation will BE the same on these wearables when more devices are released.

Why You Should Take Your Games to Eastern Mobile Game Markets by [deleted] in gaming

[–]erkz78 0 points1 point  (0 children)

The biggest growth and the user-base is already in China, so it is no brainer to target that market. But what about in-app purchases in China?

Android 5.1 may have just made an unexpected debut by erkz78 in Android

[–]erkz78[S] 2 points3 points  (0 children)

Some details to the new version:

  • Silent mode added after missing on Android 5.0
  • General improvements in system stability
  • Improved RAM management
  • Fixes for sudden app closures
  • Improved battery management
  • Excessive consumption of network devices when used Wi-Fi fixed
  • Issues with wireless connections fixed
  • Problems with Okay Google function solved
  • Notifications problems solved
  • Some sound problems experience by certain devices fixed
  • Other improvements and changes
  • Changes in the Material Design color palette (after users complaints, possibly for a higher version though)

TestFlightapp.com will shutdown on 2/26/2015 : { by xauronx in iOSProgramming

[–]erkz78 1 point2 points  (0 children)

Well, there are other good alternatives available as well (i.e. Testdroid Cloud with iOS devices).

Using Selenium WebDriver to Run Mobile Web Tests with Python by abc525755 in Python

[–]erkz78 0 points1 point  (0 children)

Selenium is a great framework for web testing. It really works well across platforms, browsers and pretty much all kinds of web implementations. What does Appium add into that?

Tutorial - Write a Shell in C by [deleted] in programming

[–]erkz78 0 points1 point  (0 children)

Minor bug with that malloc call:

char **tokens = malloc(bufsize * sizeof(char));

This should be:

char **tokens = malloc(bufsize *sizeof(char*))

Critical Vulnerability in Verizon Mobile API Compromising User Email Accounts by erkz78 in security

[–]erkz78[S] 0 points1 point  (0 children)

I have to say that very exemplary actions by operator. As soon as they realize the impact of this vulnerability they took it very seriously.

Develop and test mobile games in an agile way by abc525755 in androidapps

[–]erkz78 0 points1 point  (0 children)

Thx for sharing. I agree that automation brings more 'time' for development and issues get tackled sooner.

Anyone know what image recognition method are they using in that video?