driver.go 278 B

12345678910
  1. // Package mobile provides desktop specific mobile functionality.
  2. package mobile
  3. // Driver represents the extended capabilities of a mobile driver
  4. //
  5. // Since: 2.4
  6. type Driver interface {
  7. // GoBack asks the OS to go to the previous app / activity, where supported
  8. GoBack()
  9. }