webview

Posted Beyond8

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webview相关的知识,希望对你有一定的参考价值。

Webview识别原理

appium会启动chromedriver /Users/seveniruby/projects/chromedriver/2.20/chromedriver --url-base=wd/hub --port=8000 --adb-port=5037 --verbose
app或者浏览器,底层使用的是android的webview组件,webview组件有一个debug特性,可以在启动的时候,写入一个domain socket记录, webview_devtools_remote_3548
adb -P 5037 -s emulator-5554 shell cat /proc/net/unix 找到对应的webview调试入口
adb forward tcp:$port localabstract:webview_devtools_remote_$pid
curl http://localhost:7770/json/version
curl http://localhost:7770/json

自动寻找webview并分析

list_webview ()
{
    port=$1;
    adb shell cat /proc/net/unix | grep -a webview | awk -F_ ‘{print $NF}‘ | tr -d ‘
‘ | while read pid; do
        port=$((port+=1));
        adb forward tcp:$port localabstract:webview_devtools_remote_$pid;
        curl http://localhost:$port/json/version;
        curl http://localhost:$port/json;
    done
}
list_webview 7770

真机为了提高性能,默认不开启webview的debug属性,需要研发在webview的组件上调用debug开关
https://developers.google.com/web/tools/chrome-devtools/remote-debugging/webviews?hl=zh-cn

以上是关于webview的主要内容,如果未能解决你的问题,请参考以下文章

我的片段中有 webview,当滑动 webview 时, viewPager 也开始滑动

详解Android WebView加载html片段

如果在 WebView 片段中按下后退按钮,如何返回上一页?

android webview不加载片段

片段中的Android webView显示空白页面

在 Fragment 中使用 WebView