Driver.close() vs driver.quit

from javadoc

/**

  • Close the current window, quitting the browser if it’s the last window currently open.
    */
    void close();

/**

  • Quits this driver, closing every associated window.
    */
    void quit();

so in terms of appium -
close closes the app but keeps the driver instance.
quit terminates the driver instance.

1 Like