ssing Functional parameters(Variables) to Eggplant from Applescript
Hi ,
I have a Functionality which reads from Excel through apple Script , now i want to pass the values to Eggplant for script execution.
Example
global AccountName,AccountPass
do AppleScript {{
tell application “Microsoft Excel”
open “Macintosh HD:Users:admin:Documents:test_Demo.suite:test_Automation_Template.xls”
set AccountName to(get value of range(“D3”))
display dialog AccountName
set AccountPass to(get value of range(“D4”))
display dialog AccountPass
end tell
}}
Now I want AccountName .AccountPass read from excel through applescript to be passed to eggplant as functional parameters.
Can any one help me out to automate this scenario.
Thanks in Advance.