I am trying to get the login form from:
when I inspect in Chrome I can see the element, however when I use the jaunt api in Java I cannot get the form.
userAgent = new UserAgent();
userAgent.visit("https://etoro.com/login");
List<Form> forms = userAgent.doc.getForms();
System.out.println(forms.size()); // 0
I have little experience in HTML so any direction would be great!
This is my first post so if I havent done something correctly please let me know.
Thank you very much!