Our application requires some external inputs for testing purposes, but this data is only accessible when a user is logged in. To streamline the process and avoid requiring the user to log in multiple times, we store their credentials in a session upon initial login. The challenge we face is that the third-party tool used for user login is an applet which is not compatible with selenium webdriver.
My goal is to find a way to transfer the logged-in user session to the current user session. This involves manually logging in, extracting the session values for the user's credentials, saving them in a file, and then reading them in Java. The question remains - how can these session values be transferred via selenium webdriver using Java?
Your assistance on this matter would be greatly appreciated.
Thank you, Karim Narsindani