Can't access DB Table when trying to schedule automated test
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Can't access DB Table when trying to schedule automated test
Hi my test keeps failing because it can't access the accessdatabase engine even if it's already installed on my computer.
when i'm running manually the script runs smoothly but when i'm trying to use the task scheduler it can't access the Database.
here is the .js script that im using
var objShell = new ActiveXObject("shell.application");
var objShell = objShell.ShellExecute("C:\\Program Files (x86)\\SmartBear\\TestExecute 12\\Bin\\TestExecute.exe", "\"C:\\Users\\primatester1_svc\\Documents\\Primaforalltraining Script 311\\Test New\\Test Automation_PRIMA for ALL.pjs\" /r", "", "open", 1);
Solved! Go to Solution.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
STarting with TC/TE 12.4, there are two versions of the tool installed: a 32-bit version and a 64-bit version. By default, all icons in Windows created on installation point to the 64-bit version.
This is important when working with database drivers and such because they are installed, also, as 32-bit or 64-bit. Theoretically, I'd be willing to bet that your manual runs are using the 64-bit version of TestComplete and that you're using the 64-bit database driver.
To test this theory, change your ShellExecute like so
var objShell = objShell.ShellExecute("C:\\Program Files (x86)\\SmartBear\\TestExecute 12\\x64\\Bin\\TestExecute.exe", "\"C:\\Users\\primatester1_svc\\Documents\\Primaforalltraining Script 311\\Test New\\Test Automation_PRIMA for ALL.pjs\" /r", "", "open", 1);
Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----
Why automate? I do automated testing because there's only so much a human being can do and remain healthy. Sleep is a requirement. So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.
Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, Thank you it actually worked!!
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----
Why automate? I do automated testing because there's only so much a human being can do and remain healthy. Sleep is a requirement. So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.
Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available
