I tried Passing using Send("")
as shown below and even I tried with ControlSetText
also getting Unknown FunctionName Error
. Please Help me.
send("document.execCommand("ClearAuthenticationCache")")
I tried Passing using Send("")
as shown below and even I tried with ControlSetText
also getting Unknown FunctionName Error
. Please Help me.
send("document.execCommand("ClearAuthenticationCache")")
there are two types of quoting, that are interchangable:
send('document.execCommand("ClearAuthenticationCache")')
Alternatively you can escape the quotes:
send("document.execCommand(""ClearAuthenticationCache"")")