I am doing automation testing for an Android device, but there is an input box that requires filling in a session ID. I don't know how can I get a session ID of the mobile phone?
Your help will be appreciated.
I am doing automation testing for an Android device, but there is an input box that requires filling in a session ID. I don't know how can I get a session ID of the mobile phone?
Your help will be appreciated.
Copyright © 2021 Jogjafile Inc.

According to the documentation, you can get the session details through this (Java example):
where driver is the driver you instantiated.
Also, the sessionId is an attribute on the driver itself.
Reference