offtopic Posted November 20, 2014 Posted November 20, 2014 Hello, might i enquire how i would go about Clicking or submiting this submit button with the IE functions. I do not have access to name or id. <input type="submit" class="input_submit" value="Post" />
Danp2 Posted November 20, 2014 Posted November 20, 2014 Did you try _IEFormSubmit? Latest Webdriver UDF Release Webdriver Wiki FAQs
offtopic Posted November 20, 2014 Author Posted November 20, 2014 yes i did, nothing happened, is there some kind of function like it with an index ?
Solution mikell Posted November 20, 2014 Solution Posted November 20, 2014 ? $oInputs = _IETagNameGetCollection($oIE, "input") For $oInput In $oInputs If $oInput.value == "Post" Then _IEAction($oInput, "click") Next
offtopic Posted November 20, 2014 Author Posted November 20, 2014 That did indeed work. Thank you very much, thread can now be closed.
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