Hacktoberfest 2026:维护者为十月标记出来的 issue,仍然开放、适合新手。 浏览 Hacktoberfest issue

App do not quit .setNoReset(true)

未关闭
#2,023 1 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看

维护者通常 1 天内回复

还没有人认领这个 Issue。

评估

难度
3/5
预计耗时
1-2 天
新手友好度
35/100
Issue 类型
缺陷
描述清晰度
基本清楚
活跃度
停滞
技术栈
android, java
领域
mobile

调研方向

首先比较链接的两份日志和 UiAutomator2Options 配置,尤其是 setFullReset(false) 与 setNoReset(true) 的组合。在所述的 Android 13 模拟器上重现该行为,并确定应用为何不会退出;当配置具有一致的退出行为时即视为完成。

由索引模型根据 Issue 内容生成。

描述

Description

Application do not quit, when used .setFullReset(false) and .setNoReset(true). After removing .setNoReset(true) and setting both .setFullReset(false) and .setNoReset(false) are working.

Environment

  • Java client build version or git revision if you use some snapshot: v8.5.1
  • Appium server version or git revision if you use some snapshot: v2.1.3
  • Desktop OS/version used to run Appium if necessary: Window 10
  • Node.js version: v18.18.0
  • Mobile platform/version under test: Android 13
  • Real device or emulator/simulator: Emulator
UiAutomator2Options uiAutomator2Options = new UiAutomator2Options()
		.setAutomationName(AutomationName.ANDROID_UIAUTOMATOR2)
		.setApp(configurationProperties.extractApkFilePath().getAbsolutePathToMobileApp().toString())
		.setFullReset(false)
		.setNoReset(false)
		.setPlatformName(deviceContext.getPlatformName())
		.setPlatformVersion(deviceContext.getPlatformVersion())
		.setUdid("emulator-5554")
		.setAppPackage(configurationProperties.getApkPackageName())
		.setAppActivity(configurationProperties.getApkLaunchableActivityName());

uiAutomator2Options.setCapability(AndroidMobileCapabilityType.UNICODE_KEYBOARD, true);
uiAutomator2Options.setCapability(AndroidMobileCapabilityType.RESET_KEYBOARD, true);

driver = new AndroidDriver(appiumServerManager.getAppiumServerURL(), uiAutomator2Options);
driver.setSetting(Setting.ENABLE_NOTIFICATION_LISTENER, false);
driver.setSetting(Setting.WAIT_FOR_SELECTOR_TIMEOUT, 0);
driver.setSetting(Setting.WAIT_FOR_IDLE_TIMEOUT, 0);

Please find the both the logs link

  1. When used .setNoReset(true)
    https://gist.github.com/dipakkumar1225/cf4d7b0525dbff5637cbc8cbce2b601a

  2. When not used .setNoReset(true)
    https://gist.github.com/dipakkumar1225/c6c666890c8afb030b29dfef290d601e

主要语言
Java
星标
1.3k
派生
755
平均合并
5 天 14 小时
30 天内合并 PR
8

环境准备

  • 没有 Dockerfile 或 Docker Compose 文件
  • 有 Pull Request 模板
  • 没有贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

appium/java-client 的其他 Issue

查看 appium/java-client 的全部 Issue

相似的 Issue

更多 Java Issue

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。