Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Mobile Deep Links Testing

Mobile Deep Links Testing

Mobile deep links are used more and more, but still, a lot of developers and testers face various issues trying to implement this tech. GetSocial team has 4+ years of experience in writing our own deep linking solution. We came across several changes in the mobile ecosystem including mobile OSs, browsers and deep linking standards.

Medium article with the same topic https://blog.usejournal.com/implement-high-quality-mobile-deep-links-tips-and-tricks-dd24f70088e8

Diana Pinchuk

March 26, 2018
Tweet

More Decks by Diana Pinchuk

Other Decks in Technology

Transcript

  1. - Tested a lot of stuff - GDG Lviv &

    GDG DevFest Ukraine co-organizer - Love memes :D
  2. Agenda • What is deep link • DL use cases

    • Developers pain • Testing tips • Q&A
  3. Deep linking Mobile deep linking, is the process of using

    a URI to link to specific pages or locations within a mobile application.
  4. Deep links have variable application • Invites to the app

    • Personalized onboarding experience • Referral campaigns • Retargeting • Make e-2-e testing faster with direct navigation • Android Instant Apps use Android App Links
  5. The benefits from deep links usage • Enhance the user

    experience • Improve User Retention, Engagement, & Usage => 77% D2 retention • Help Re-Engage Users • Strengthen Marketing efforts • Improve App Discoverability => >50% of users install an app after friend’s recommendation Word of mouth is one of the most effective ways of getting users to install your app
  6. Support various deep linking technologies Tech / OS version iOS

    < 9 iOS > 9 Android < 6 Android > 6 URI Schemes x x x Universal links x Android App Links x Chrome Intents x x Presentation about DL standards https://goo.gl/hg4Ss8
  7. URI schemes market://details?id=com.example.myapp Deeplink Purpose travelbrand:// Open the app travelbrand://registration

    Open the app to the shopping cart checkout screen travelbrand://hotel/123 Open the app to a particular product ID
  8. iOS: Universal links (UL) limitations • UL won’t work if

    you paste the link into the browser URL field • UL work with a user driven element click across domains • UL cannot be triggered via Javascript, unless it is part of a user action
  9. Android specifics • Firing an intent is not that easy

    • The difference between deep links and App links: the disambiguation dialog won’t appear
  10. Tracking attribution • Google Play INSTALL_REFERRER is not reliable •

    Some apps (e.g. Facebook) remove referrer • Apple App Store has no proper method to send specific parameters after install to the app on the first launch Solution => Fingerprints
  11. But the biggest pain is... Maintenance • e.g. Facebook bug

    • or Twitter update • or iOS 11.2.x bug • or any other bug that appears right now...
  12. Tester’s pain • Big e2e cases are difficult to automate,

    sometimes impossible • Fragmentation hell (OS, browsers, messengers) => different deep linking flows • A lot of dependencies on the third-parties • Maintenance… again
  13. DL does not open the app… make sure • …

    you are clicking on a deep link • … deep link is not wrapped (e.g. http://bit.ly/AIA-QA) • … you have configured your app correctly • … you understand the expected behavior of deep links • … the deep link domain matches your link domain
  14. Testing tips • Stay informed about all updates in OS,

    frameworks etc • Keep structure in your test results • Subscribe to your competitors blogs • Be patient
  15. Conclusions • Be prepared to spend a lot of time

    for testing • Don’t reinvent the wheel • Be aware about all updates • Deep links are cool and useful