Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Login Form in Clockify

I'm trying to create a PowerShell script to open Internet Explorer, navigate to https://clockify.me/login , fill in the email and password inputs and submit the form or click the log in button.

The problem is that, when filling the inputs using:

  • document.getElementById("email").value="123"
  • document.getElementById("password").value="123"

I have the following results:

  • When I submit the form with document.forms[0].submit() the pages reload with URL https://clockify.me/login?email=&password= and nothing happens
  • When I click the button, using javascript or manually, it considers that the inputs are empty

So, is there a way to work around this? Either using purely javascript or PowerShell (I wish to keep the IE window invisible)

Thanks!

like image 328
Fabio Leonardo Avatar asked Jun 07 '18 16:06

Fabio Leonardo


People also ask

How do you invite someone to Clockify?

Manually inviting users #Click on three dots next to them and choose Send an invite email. Click on three dots next to them and choose Copy invite link and send it to them personally. Members can sign up on their own and they'll automatically be part of your workspace (if they have a pending invite)


1 Answers

Even though you are changing the values of the input DOM objects, that is not enough to trigger the change detection of the underlying Angular libraries, thus making the form appear 'empty'.

The following pure JS example works on Chrome, but I have not tested it in Internet Explorer:

let email = document.getElementById("email");
let password = document.getElementById("password");
let button = document.getElementsByTagName("button")[0];

email.value = '[email protected]';
password.value = 'yourpassword';

// Trigger change detection
email.dispatchEvent(new Event('input'));
password.dispatchEvent(new Event('input'));

button.click();

In case dispatchEvent does not work in IE, you could try with createEvent and initEvent. See dispatchEvent not working in IE11

like image 123
user2551768 Avatar answered Sep 18 '22 11:09

user2551768