appium如何解鎖android真機系統的螢幕?

2021-10-12 19:04:13 字數 667 閱讀 4094

實際上解決辦法如下:在desired_capabilities中增加兩個引數unlocktype和unlockkey,類似的示例**如下:

desired_caps={}

desired_caps['platformname']='android'

desired_caps['platformversion']='8.0.0'

desired_caps['devicename']='wg5t16a18019'

desired_caps['autograntpermissions']=true

desired_caps['unlocktype']="password"

desired_caps['unlockkey']="111111"

其中的unlocktype可以設定為:pin,password,pattern,fingerprint當中的乙個,顧名思義,分別對應pin,密碼,手勢解鎖以及指紋解鎖四種方式。

而unlockkey則為具體值,例如password即為實際的解鎖口令,而pattern模式下則為手勢解鎖的滑動過程,如下圖所示,則應設定為5416或者是6145(取決於滑動順序)

mysql 如何解鎖 mysql鎖表如何解鎖

什麼是mysql鎖表?為了給高併發情況下的mysql進行更好的優化,有必要了解一下mysql查詢更新時的鎖表機制。mysql有三種鎖的級別 頁級 表級 行級。myisam和memory儲存引擎採用的是表級鎖 table level locking bdb儲存引擎採用的是頁面鎖 page level ...

oracle如何解鎖使用者?

解鎖方式 conn sys sys as sysdba 以dba的身份登入 alter user scott account unlock 然後解鎖 conn scott tiger 彈出乙個修改密碼的對話方塊,修改一下密碼就可以了具體操作步驟如下 c sqlplus請輸入使用者名稱 sys 輸入口...

mysql解鎖 mysql鎖表如何解鎖

什麼是mysql鎖表?為了給高併發情況下的mysql進行更好的優化,有必要了解一下mysql查詢更新時的鎖表機制。mysql有三種鎖的級別 頁級 表級 行級。myisam和memory儲存引擎採用的是表級鎖 table level locking bdb儲存引擎採用的是頁面鎖 page level ...