How to automatically login to your Skiplino account
First of all, you have to enable the "Chromium" and also the "Run Custom Script" options. These settings are located on the Advanced Settings of your web-page.
After that you have enabled the aforementioned options, paste the below code as it is:
Bear in mind to replace YOUR_USERNAME and YOUR_PASSWORD with your real credentials.
pause(1)type("""#view_login > div > div > div.login-form.color.accent-secondary > form > div:nth-child(1) > input""", """YOUR_USERNAME""")
runScript("""document.querySelector('#view_login > div > div > div.login-form.color.accent-secondary > form > div:nth-child(1) > input').dispatchEvent(new Event("input", { bubbles: true }))""")
pause(1)
type("""#view_login > div > div > div.login-form.color.accent-secondary > form > div:nth-child(2) > input""", """YOUR_PASSWORD""")
runScript("""document.querySelector('#view_login > div > div > div.login-form.color.accent-secondary > form > div:nth-child(2) > input').dispatchEvent(new Event("input", { bubbles: true }))""")
pause(1)
click("""#view_login > div > div > div.login-form.color.accent-secondary > form > input""")