general
How to launch a saved profile without clicking on the label?
When selecting a saved profile, a new tab is created but the login process does not start until clicking on the label. How can I launch the saved profile without the need to click on the label?
Zo
Zoltan Gabor
Asked on Mar 09, 2024
To automatically start the logging procedure when selecting a saved profile without clicking on the label, you can use JavaScript to trigger the login process programmatically. Here's a basic example of how you can achieve this:
// Simulate clicking on the label to start the logging procedure
const label = document.querySelector('.tab-label');
label.click();
Mar 11, 2024Edited by