autocliclear the button Start your 30-day free trial from amazon.com

0

I want to create an Amazon Prime account automatically

With visual I created the project and currently, all that remains is to click automatically on the Start your 30-days free trial button.

I can not do it through the DOM of the page because the button, apparently, has no associated class or id.

<input class="a-button-input" type="submit" aria-labelledby="a-autoid-0-announce">

I leave an image so that they understand me better:

    
asked by Soluciones Pc Android 21.08.2018 в 07:41
source

1 answer

1

As you do not say the language in which you do it, I tell you in pseudocode:

  • You get all the elements whose class is a-button-input
  • Filter those elements whose content is: Start your 30-day free trial
  • You call the .click () method of that element
  • answered by 21.08.2018 в 12:56