tommytx Posted February 17, 2012 Posted February 17, 2012 (edited) _IELinkClickByText($oIE, "My Button") does not click... type is Button _IELinkClickByText($oIE, "My Link") works fine type is submit Using link clicker works just fine, but I don't see the code to click a button.... In other words the type of input is Button vice Submit. Is there a simple way to click the button? Thanks. Edited February 17, 2012 by tommytx
mihaibr Posted February 17, 2012 Posted February 17, 2012 (edited) use _IEGetObjByName and _IEAction$IE = _IECreate("your address") $object = _IEGetObjByName ($IE, "button name") _IEAction ($object, "click") Edited February 17, 2012 by mihaibr
tommytx Posted February 17, 2012 Author Posted February 17, 2012 Thanks that worked great. Only problem is my button name is "Accept Job" and not "button name". Just joking.... thanks so much....
mihaibr Posted February 17, 2012 Posted February 17, 2012 Thanks that worked great. Only problem is my button name is "Accept Job" and not "button name".Just joking.... thanks so much....hehe no problem
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now