Mobile web debugging


My tricks to develop for the
        mobile web



                      By:        Gregers Rygg
                      Twitter:   @gregersrygg
Desktop



•  ”All” have developer tools
•  Most are very good
 Inspect HTML
 Debug JavaScript
 Network analysis
 Console
 JavaScript profiling
 Performance tips
 Modify CSS/JavaScript on the fly
 Memory inspection
 Database explorer
 +++
Possible in Internet Explorer 6…
…usable in Internet Explorer 8+
Desktop
 Console
 Inspect HTML
 Debug JavaScript
 Network analysis
 JavaScript profiling
 Performance tips
 Modify CSS/JavaScript on the fly
 Memory inspection
 Database explorer
 +++
iPhone/Android (built-in)
 Console
 Inspect HTML
 Debug JavaScript
 Network analysis
 JavaScript profiling
 Performance tips
 Modify CSS/JavaScript on the fly
 Memory inspection
 Database explorer
Opera Mobile + Dragonfly
  Console
  Inspect HTML
  Debug JavaScript
  Modify CSS
  Database explorer?
  Network analysis
 JavaScript on the fly
 JavaScript profiling
 Performance tips
 Memory inspection
Yay!, but…
…unfortunately not much used (for m.finn.no)
iPhone/Android (Weinre)
  Console
  Inspect HTML
  Modify CSS/JavaScript on the fly
  Database explorer
 Debug JavaScript
 Network analysis
 JavaScript profiling
 Performance tips
 Memory inspection
Tip #1
•  Connect to both WiFi and ethernet
HP ”Elite”Book
•  WiFi turns off when ethernet is connected
•  BIOS Settings (reboot + ESC, then F10)
•  System Configuration
  –  Built-In Device Option
     •  Disable LAN/WLAN switching
Tip #2
•  Webkit Inspector Remote (Weinre)
•  Demo time!
Weinre install
http://phonegap.github.com/weinre/
  Installing.html

$ cat ~/.weinre/server.properties
boundHost: -all-
httpPort: 8001
Weinre install
•  Start server
•  Add bookmarklet
•  Increase Auto-Lock time (iOS setting) to
   prevent disconnect
page.jsp?weinre=8001
<c:if test="${!empty param.weinre}">
 <script src="http://${pageContext.request.serverName}:<c:out
   value="${param.weinre}"/>/target/target-script-min.js#anonymous">
 </script>




</c:if>
page.jsp?weinre=8001
<c:if test="${!empty param.weinre}">
 <script src="http://${pageContext.request.serverName}:<c:out
   value="${param.weinre}"/>/target/target-script-min.js#anonymous">
 </script>
 <script>
   window.console &&
     (window.onerror = function(e) { console.error(e); });
 </script>
</c:if>
Tip #3
Charles Debugging Proxy
Tip #4
<style type="text/css”
  media =
  "${param.debug != 'mobile' ?
  'only screen and (max-device-width:
  480px)' :
  'screen'}”
>
Link to all tools mentioned ++
     http://goo.gl/FgOg7

More Related Content

KEY
New Perspectives on Performance
PPT
Introduction To Ruby Watir (Web Application Testing In Ruby)
PPTX
XboxAppDev 4. Web Apps on Xbox
PPTX
Browser Automated Testing Frameworks - Nightwatch.js
PPTX
Plone 6 / Volto Dexterity Content Types - Schema & Layout
PDF
Automated Testing with Ruby
KEY
SproutCore is Awesome - HTML5 Summer DevFest
PPT
Automated Testing With Watir
New Perspectives on Performance
Introduction To Ruby Watir (Web Application Testing In Ruby)
XboxAppDev 4. Web Apps on Xbox
Browser Automated Testing Frameworks - Nightwatch.js
Plone 6 / Volto Dexterity Content Types - Schema & Layout
Automated Testing with Ruby
SproutCore is Awesome - HTML5 Summer DevFest
Automated Testing With Watir

What's hot (20)

KEY
JavaScript Testing VIA Selenium
PPT
Selenium and Cucumber Selenium Conf 2011
PDF
Advanced Jasmine
PPTX
Intro to Rails
PPTX
Cache is King
PDF
Introduction to Selenium and Ruby
DOC
Selenium Automation Using Ruby
PDF
The Peanut Butter Cup of Web-dev: Plack and single page web apps
PPTX
Web testing with Selenium
PPT
Watir Presentation Sumanth Krishna. A
PPT
PDF
jQuery Proven Performance Tips & Tricks
PPT
Testing Any Site With Cucumber and Selenium
PPT
SXSW 2012 JavaScript MythBusters
PPT
Integration and Acceptance Testing
PPTX
Your Script Just Killed My Site
PDF
Beach Parasol
PDF
JavaOne2016 #CON5929 Time-Saving Tips and Tricks for Building Quality Java Ap...
PDF
Story Driven Development With Cucumber
PDF
Frontend SPOF
JavaScript Testing VIA Selenium
Selenium and Cucumber Selenium Conf 2011
Advanced Jasmine
Intro to Rails
Cache is King
Introduction to Selenium and Ruby
Selenium Automation Using Ruby
The Peanut Butter Cup of Web-dev: Plack and single page web apps
Web testing with Selenium
Watir Presentation Sumanth Krishna. A
jQuery Proven Performance Tips & Tricks
Testing Any Site With Cucumber and Selenium
SXSW 2012 JavaScript MythBusters
Integration and Acceptance Testing
Your Script Just Killed My Site
Beach Parasol
JavaOne2016 #CON5929 Time-Saving Tips and Tricks for Building Quality Java Ap...
Story Driven Development With Cucumber
Frontend SPOF
Ad

Viewers also liked (20)

PDF
Instrukacja montazu narożników i łączników
PDF
Introduction of Agent Based Modeling (ABM) for Customer Behavior Model
PDF
BEM it! Introduction to BEM
DOCX
Numbers activities
PPTX
Lessons for Africa’s Integration inspired by the EU Integration
PPTX
Science the bold words
PPT
ФОРУМ ПРОФЕССИОНАЛОВ
DOC
Tugas etika profesi
PPT
Tf8 integratingtechnologyintothecurriculum ahmadzai
PPTX
Lord of Ages
PPTX
Know your city for saamavani
KEY
Использование библиотеки bem-bl
PDF
A3 examen et corrige arabe 2012 1 am t2
PPTX
Presentation lohn
PPTX
Obinitsa- Finno-Ugric Capital of Culture 2015 @ UN in Geneva
RTF
Ko'galo After Party
PPTX
Science the bold words
PDF
2 examen et corrige anglais 2011 1 am t1
PDF
A3 examen et corrige his geo 2012 1-am t2
PDF
Cultural Considerations
Instrukacja montazu narożników i łączników
Introduction of Agent Based Modeling (ABM) for Customer Behavior Model
BEM it! Introduction to BEM
Numbers activities
Lessons for Africa’s Integration inspired by the EU Integration
Science the bold words
ФОРУМ ПРОФЕССИОНАЛОВ
Tugas etika profesi
Tf8 integratingtechnologyintothecurriculum ahmadzai
Lord of Ages
Know your city for saamavani
Использование библиотеки bem-bl
A3 examen et corrige arabe 2012 1 am t2
Presentation lohn
Obinitsa- Finno-Ugric Capital of Culture 2015 @ UN in Geneva
Ko'galo After Party
Science the bold words
2 examen et corrige anglais 2011 1 am t1
A3 examen et corrige his geo 2012 1-am t2
Cultural Considerations
Ad

Similar to Mobile web-debug (20)

PDF
Debugging and Tuning Mobile Web Sites with Modern Web Browsers
KEY
Js On Mobile Devices
PDF
Debugging Web Apps on Real Mobile Devices
PPTX
Phone gap development, testing, and debugging
KEY
Developing for the mobile web
PPTX
Inspect The Uninspected
PDF
Phonegap Development & Debugging
PDF
Mobile JavaScript
KEY
DjangoSki
PPTX
HTML5 on Mobile
PDF
Frontend. Global domination.
PDF
Front-end. Global domination
PPTX
An overview of mobile html + java script frameworks
PPTX
Html5 on Mobile(For Developer)
PDF
I Phone Developer Introduction By Eschipul
PDF
Advanced programing in phonegap
PDF
Introduction phonegap
KEY
HTML5 is the Future of Mobile, PhoneGap Takes You There Today
PDF
Hybridmobileapps 130130213844-phpapp02
PDF
The Mobile Web - HTML5 on mobile devices
Debugging and Tuning Mobile Web Sites with Modern Web Browsers
Js On Mobile Devices
Debugging Web Apps on Real Mobile Devices
Phone gap development, testing, and debugging
Developing for the mobile web
Inspect The Uninspected
Phonegap Development & Debugging
Mobile JavaScript
DjangoSki
HTML5 on Mobile
Frontend. Global domination.
Front-end. Global domination
An overview of mobile html + java script frameworks
Html5 on Mobile(For Developer)
I Phone Developer Introduction By Eschipul
Advanced programing in phonegap
Introduction phonegap
HTML5 is the Future of Mobile, PhoneGap Takes You There Today
Hybridmobileapps 130130213844-phpapp02
The Mobile Web - HTML5 on mobile devices

More from FINN.no (8)

PDF
OOCSS e ælsk
PPTX
Slutt å snakk, begynn å jobb - om FINNovasjonsdagen
PPTX
Hvordan fungerer en søkemotor
PPTX
Apache solr i finn.no
PPTX
Slutte å snakke og begynn å jobbe
PDF
Nå begynner moroa software2011
PDF
20111011 Geek Girls - Innovation
PDF
Du vil vel ikke mamma noe vondt?
OOCSS e ælsk
Slutt å snakk, begynn å jobb - om FINNovasjonsdagen
Hvordan fungerer en søkemotor
Apache solr i finn.no
Slutte å snakke og begynn å jobbe
Nå begynner moroa software2011
20111011 Geek Girls - Innovation
Du vil vel ikke mamma noe vondt?

Recently uploaded (20)

PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
PPTX
Chapter 5: Probability Theory and Statistics
PDF
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
PPTX
Benefits of Physical activity for teenagers.pptx
PPTX
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
PPTX
Web Crawler for Trend Tracking Gen Z Insights.pptx
PDF
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
PPTX
O2C Customer Invoices to Receipt V15A.pptx
PDF
A contest of sentiment analysis: k-nearest neighbor versus neural network
PDF
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
PDF
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
PDF
WOOl fibre morphology and structure.pdf for textiles
PDF
Taming the Chaos: How to Turn Unstructured Data into Decisions
PDF
Getting started with AI Agents and Multi-Agent Systems
PDF
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Zenith AI: Advanced Artificial Intelligence
PDF
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
PPTX
The various Industrial Revolutions .pptx
PDF
Unlock new opportunities with location data.pdf
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
Chapter 5: Probability Theory and Statistics
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
Benefits of Physical activity for teenagers.pptx
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
Web Crawler for Trend Tracking Gen Z Insights.pptx
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
O2C Customer Invoices to Receipt V15A.pptx
A contest of sentiment analysis: k-nearest neighbor versus neural network
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
WOOl fibre morphology and structure.pdf for textiles
Taming the Chaos: How to Turn Unstructured Data into Decisions
Getting started with AI Agents and Multi-Agent Systems
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
Assigned Numbers - 2025 - Bluetooth® Document
Zenith AI: Advanced Artificial Intelligence
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
The various Industrial Revolutions .pptx
Unlock new opportunities with location data.pdf

Mobile web-debug