Ganesh2VL Posted August 29, 2017 Posted August 29, 2017 Hi, I am facing an error at the below line guessing due to colon characters in the variable, Local date = _IEGetObjById($oIE, "form:accountTransHistory:reservationtime") _IEAction(date, "click") Appreciate your help in this issue, Regards VL Ganesh
Danp2 Posted August 29, 2017 Posted August 29, 2017 Variables always start with a dollar sign. Try changing your code to this -- Local $date = _IEGetObjById($oIE, "form:accountTransHistory:reservationtime") _IEAction($date, "click") Latest Webdriver UDF Release Webdriver Wiki FAQs
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