-4

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")")
Stephan
  • 53,940
  • 10
  • 58
  • 91
Sravani
  • 1
  • 1
  • 2

1 Answers1

0

there are two types of quoting, that are interchangable:

send('document.execCommand("ClearAuthenticationCache")')

Alternatively you can escape the quotes:

send("document.execCommand(""ClearAuthenticationCache"")")
Stephan
  • 53,940
  • 10
  • 58
  • 91