in reply to Re^2: Login to website (uses JS, I think)
in thread Login to website (uses JS, I think)

Unfortunately, I can't get it to submit the values!

What line of your program do you think that should happen?

  • Comment on Re^3: Login to website (uses JS, I think)

Replies are listed 'Best First'.
Re^4: Login to website (uses JS, I think)
by paxprobellum (Initiate) on May 19, 2010 at 04:04 UTC
    Once the values are in, I click every element I can get ahold of (all links, images, and tables) with the Click() function. If one of those was the submit button, it would submit (presumably). Seems I'm missing it, and my guess is that I need to click a cell (not the whole table). Unfortunately, all of the functions to actually get ahold of the cell aren't functioning. /bang_head_on_wall
      I click every element I can get ahold of.If one of those was the submit button,

      Are you serious? Don't do that!

      Also, what do you mean if one was the submit button? Why don't you 1) find out what you actually actually clicked 2) find out what happened after you clicked it. Or, better still, find the right thing to click , and click that instead. You can even forgo clicking , and use the submit() DOM function.

        It was kinda a last ditch effort. There is only 1 link on the whole page. I believe I actually need to click on a cell of a table. submit() didn't work.