
MetalGear
Novice

May 18, 2010, 9:04 PM
Post #7 of 8
(1168 views)
|
|
Re: [paxprobellum] Logging into website
[In reply to]
|
Can't Post
|
|
to find the specific button u want to click, view source of that page, and find out the "name" or "value" or any other attribute related to that button. ex: if name of button is "submit", just search for submit in source file of website and look for its vakue or name. then
$ie->getButton('caption:', "Google Search")->click(); $ie->getButton('name:', "btnG")->click(); etc... the above is for google site. if u r getting a popup asking for password, then again its differenr scenario.
|