Buras
Buras

Reputation: 3099

How to click a button after redirect?

Only for JS testing purposes: I need to go this this webpage and click Create new user as soon as the page loads . How can I do this ??

The first step is probably

<button onclick="location.href = 'http://jqueryui.com/dialog/#modal-form';" id="myButton"  >Go to modal form</button> 

Now what should I do ? Maybe there is a way to preload the target page and click on the create new user using JQuery ?

Upvotes: 0

Views: 135

Answers (1)

Thinsky
Thinsky

Reputation: 4246

You can send parameters to control the logic.

Upvotes: 1

Related Questions