HI, I'm new to this!
I'm creating a bot that does something on a web page. The first step is to log into the site. However, since the bot will repeat itself, the second run, the bot is already logged into the website. How do I skip the logging on part if the user is already logged on?
Logic:
- Run Bot
- IF user is not logged in, log the user in
- IF the user is logged in, skip login and go to next steps
Thanks!