我需要关闭应用并将其重新启动到我关闭它的相同位置,因为这是使用closeApp和launchApp方法。但是当我启动应用程序时,它从一开始就启动应用程序。我试过noReset和fullReset选项。我使用appium 1.2.7和ios 11.2与iPhone 7模拟器。在android中我能够使用noReset实现这一点,这在ios中是否可行。
任何人都可以建议吗?
提前致谢。
答案 0 :(得分:0)
执行所需操作的唯一方法是保存session_id,并在启动新测试时从开始执行测试的结束点开始......
你需要做的是覆盖Appium构造函数和start_session:
Python类代码 :
class MyWebDriverAppium(webdriver.Remote):
def __init__(self, context, command_executor='http://127.0.0.1:4444/wd/hub',
desired_capabilities=None, session_id=None):
self.cCore = context
try:
self.preserved_session_id = session_id
self.error_handler = MobileErrorHandler()
self._switch_to = MobileSwitchTo(self)
# add new method to the `find_by_*` pantheon
By.IOS_UIAUTOMATION = MobileBy.IOS_UIAUTOMATION
By.IOS_PREDICATE = MobileBy.IOS_PREDICATE
By.ANDROID_UIAUTOMATOR = MobileBy.ANDROID_UIAUTOMATOR
By.ACCESSIBILITY_ID = MobileBy.ACCESSIBILITY_ID
super(MyWebDriverAppium, self).__init__(command_executor, desired_capabilities)
except Exception:
print(traceback.format_exc())
raise MyWebDriverAppiumInit("Error initializing Appium driver")
# If preserved_session is None we will start a new session as normal
# If preserved session is not None we will use that session to execute
def start_session(self, desired_capabilities, browser_profile=None):
try:
if self.preserved_session_id:
self.command_executor._commands['getSession'] = ('GET', '/session/$sessionId')
self.session_id = self.preserved_session_id
response = self.execute('getSession', {'sessionId ': self.session_id})
self.session_id = response['sessionId']
self.capabilities = response['value']
self.w3c = response['status']
else:
super(MyWebDriverAppium, self).start_session(desired_capabilities, browser_profile)
except Exception:
raise MyWebDriverAppiumStart("Error starting Appium driver after initialization")
Python实施代码 :
self.driver = MyWebDriverAppium(self, self.driver_context, self.desired_caps, session_id)
Java类代码 :
public class MyWebDriverAppium extends RemoteWebDriver {
private String preserved_session_id = null;
public MyWebDriverAppium(URL remoteAddress, Capabilities desiredCapabilities, String session_id) {
super(remoteAddress, desiredCapabilities);
this.preserved_session_id = session_id;
}
@Override
protected void startSession(Capabilities desiredCapabilities) {
if(this.preserved_session_id != null){
setSessionId(this.preserved_session_id);
}
super.startSession(desiredCapabilities);
}
}
Java实现代码 :
driver = new MyWebDriverAppium<WebElement>(new URL("http://127.0.0.1:4723/wd/hub"), capabilities, session_id);
我知道python代码完美无缺,因为我在测试中每次都使用它。我并不是100%确定Java代码能够完美运行,因为我没有使用IDE。
希望有所帮助