跳转到内容
View in the app

A better way to browse. Learn more.

彼岸论坛

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
欢迎抵达彼岸 彼岸花开 此处谁在 -彼岸论坛

[Python] 请问, adb 输入内容和手动点击键盘输入的区别在哪?

发表于

如题,登陆某 app 需要输入密码

手动在键盘输入密码,假设密码是:"Abc@123",能登陆成功

但是通过 adb 输入相同密码(输入的密码确认是一样的),却提示密码错误

adb shell input text Abc@123

尝试使用 python appium ,一个一个字符输入也提示密码错误

def input_keycode(self, text):
    for i in text:
        time.sleep(0.5)
        if i == '@':
            self.driver.press_keycode(77)
        elif i.isnumeric():
            keycode = int(i) + 7
            self.driver.press_keycode(keycode)
        else:
            if i.isupper():
                keycode = ord(i.lower()) - ord('a') + 29
                self.driver.press_keycode(keycode, 1)
            else:
                keycode = ord(i) - ord('a') + 29
                self.driver.press_keycode(keycode)

难道安卓能检测到输入方式? 不太懂,求大佬们解答🙏

Featured Replies

No posts to show

创建帐户或登录来提出意见

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.