Changes between Version 1 and Version 2 of RemoteInspectorGTKandWPE


Ignore:
Timestamp:
Jan 31, 2025, 5:19:37 AM (10 days ago)
Author:
Adrian Perez de Castro
Comment:

Point to the new location of the documentation

Legend:

Unmodified
Added
Removed
Modified
  • RemoteInspectorGTKandWPE

    v1 v2  
    11= Using the Remote Inspector with WebKitGTK+ and WPE
    22
    3 The remote inspector enables debugging of web pages in environment where you might not be able to run the web inspector directly, such as WPE running in embedded targets.
     3Moved into the WebKitGTK and WPE manuals: https://commits.webkit.org/289603@main
    44
    5 To run the remote inspector, you need to:
    6 - set the environment variable `WEBKIT_INSPECTOR_SERVER=ip:port` before running jsc or a browser/launcher powered by WPE or WebKitGTK+
    7 - enable the WebKitSettings `enable-developer-extras`
    8 
    9 For example:
    10 
    11 {{{
    12 export WEBKIT_INSPECTOR_SERVER=192.168.0.50:5000
    13 MiniBrowser --enable-developer-extras=true https://wpewebkit.org
    14 }}}
    15 
    16 Then, open another browser with the same version of WebKitGTK+ (matching the WPE version if it's the case) and open `inspector://ip:port`:
    17 
    18 
    19 {{{
    20 MiniBrowser inspector://192.168.0.50:5000
    21 }}}