- 使用自动化测试导出jest脚本时,没有导出原生授权的点击事件?
问题背景: 使用自动化测试录制了一个脚本[图片]选择导出用例为jest脚本[图片]jest脚本里没有存在原生授权弹框的点击事件,如登录授权弹框[图片][图片]请问,我要怎么补充这个"允许" 事件,或者导出的时候怎么把 "允许"事件一起导出
02-27 - 用户隐私保护指引审核失败,如何知道是什么原因?
隐私保护指引审核失败,是否意味着无法提审?如何知道审核失败是什么原因导致的?有没有修改建议?[图片]
2023-08-23 - 微信小程序用户反馈打不开,日志大量显示invokeundefined
设备品牌 HONOR 设备型号 SDY-AN00 客户端版本 8.0.38 基础库版本 2.32.3 系统类型 Android 12 2023-5-21 16:51:15 [log] wx.getAccountInfoSync api invokeundefined 2023-5-21 16:51:15 [log] wx.request api invokeundefined 2023-5-21 16:51:15 [log] wx.getNetworkType api invokeundefined 2023-5-21 16:51:15 [log] wx.getStorageSync api invokeundefined 2023-5-21 16:51:15 [log] wx.getStorageSync return 2023-5-21 16:51:15 [log] wx.getSystemInfoSync api invokeundefined 2023-5-21 16:51:15 [log] wx.getSystemInfoSync return 2023-5-21 16:51:15 [log] wx.getStorageSync api invokeundefined 2023-5-21 16:51:15 [log] wx.getStorageSync return 2023-5-21 16:51:15 [log] wx.getStorageSync api invokeundefined 2023-5-21 16:51:15 [log] wx.getStorageSync return 2023-5-21 16:51:15 [log] wx.getStorageSync api invokeundefined 2023-5-21 16:51:15 [log] wx.getStorageSync return 2023-5-21 16:51:15 [log] wx.getSystemInfoSync api invokeundefined 2023-5-21 16:51:15 [log] wx.getSystemInfoSync return 2023-5-21 16:51:15 [log] wx.getSystemInfoSync api invokeundefined 2023-5-21 16:51:15 [log] wx.getSystemInfoSync return 2023-5-21 16:51:15 [log] wx.getStorageSync api invokeundefined 2023-5-21 16:51:15 [log] wx.getStorageSync return 2023-5-21 16:51:15 [log] wx.getMenuButtonBoundingClientRect api invokeundefined 2023-5-21 16:51:15 [log] wx.getStorageSync api invokeundefined 2023-5-21 16:51:15 [log] wx.getStorageSync return 2023-5-21 16:51:15 [log] wx.setStorage api invokeundefined 2023-5-21 16:51:15 [log] wx.setStorage success callback with msg setStorage:ok 2023-5-21 16:51:15 [log] wx.setStorage api invokeundefined 2023-5-21 16:51:15 [log] wx.getStorageSync api invokeundefined 2023-5-21 16:51:15 [log] wx.getStorageSync return 2023-5-21 16:51:15 [log] wx.getSystemInfoSync api invokeundefined 2023-5-21 16:51:15 [log] wx.getSystemInfoSync return 2023-5-21 16:51:15 [log] wx.getBatteryInfoSync api invokeundefined 2023-5-21 16:51:15 [log] wx.getBatteryInfoSync return 2023-5-21 16:51:15 [log] wx.canIUse api invokeundefined 2023-5-21 16:51:15 [log] wx.canIUse api invokeundefined
2023-07-03 - wx.getLocation的accuracy返回0~10000代表什么意思?
问题1: wx.getLocation的accuracy返回0~10000单位是米吗,怎么去理解这段数值? 问题2:模拟器返回的是特定数值? 调用代码 wx.getLocation({ type: 'gcj02', isHighAccuracy: true, highAccuracyExpireTime: 3000 })
2022-01-04 - wx.getLocation error
getLocation 返回{"errMsg":"getLocation:fail:ERROR_NOCELL&WIFI_LOCATIONSWITCHOFF","errCode":2}用户手机 Android 11 5g手机从截图上看,用户用的流量,信号满格麻烦官方看下这类是不是会有大概率会定位失败?
2021-08-30 - map地图hidden隐藏后切后台重进,地图显示黑屏
- 当前 Bug 的表现(可附上截图) Android 8.X版本(目前测试只有8系统有这种情况),地图hidden隐藏,切到后台或者回到系统桌面后,重新进入小程序,显示地图变成黑屏 [图片] - 预期表现 地图正常显示 - 复现路径 Android 8.X版本: 地图hidden隐藏 - 切到后台或者回到系统桌面 - 重新进入小程序 - 显示地图 - 提供一个最简复现 Demo wxml: <map id="map" longitude="113.324520" latitude="23.099994" scale="14" controls="{{controls}}" bindcontroltap="controltap" markers="{{markers}}" bindmarkertap="markertap" polyline="{{polyline}}" bindregionchange="regionchange" show-location style="width: 100%; height: 300px;" hidden="{{!isShowMap}}"></map> <button bindtap="test">按钮</button> <button bindtap="test1">显示</button> js: // pages/test/index.js Page({ /** * 页面的初始数据 */ data: { isShowMap: true }, test() { this.setData({ isShowMap: false }) }, test1() { this.setData({ isShowMap: true }) } })
2018-10-10