I don't know, is it valid question or not, but I need to know that can we change desired capability for certain test cases, such as my desired capabilities are like this:
desired_caps = dict(
platformName="Android",
platformVersion="12",
deviceName="testing_device_001",
automationName="UiAutomator2",
appPackage="app_package_name",
appActivity="its_activity",
noReset=True
)
I need to change 'noReset' value to 'False' for certain test cases? Is it possible? and above all, does it considered as good practice?