Hello,
Does anyone know how to access the name of the current test list inside a coded step?
Thanks,
Steve
Hello,
Our web application uses Common Access Card for authentication. For those who are not familiar with CAC smart card, here is the definition:
"The CAC, a "smart" card about the size of a credit card, is the standard identification for active duty uniformed service personnel, Selected Reserve, DoD civilian employees, and eligible contractor personnel."
http://www.cac.mil/
When I recorded the test, I logged in with using my CAC card (CAC card is physically connected to the computer through a CAC card reader using USB cable). The test executed and passed. No problem there. If I remove the CAC card and run the test it would not work. I get alert message requesting to insert CAC card. The fact that I have to leave my CAC card in all the time when I run the test can be a potential issue down the road. I'm just wondering if there is any kind of support for CAC card in the Test Studio. What I ultimately wanted to do is not having to keep my CAC card physically at the machine when I run the test. Does anyone have any suggestions?
Thank you!
Jun
Hi
I'm trying to write a check to see if the word "error" is visible anywhere on the current page: how might I do this?
I'd hoped to be able to do something like...
Element e = Find.ByContent(
"p:error"
);
if
(e.Equals(
null
))
{
Log.WriteLine(
"Could not find error message"
);
}
But I get this error:
System.NullReferenceException: Object reference not set to an instance of an object.
Any help gratefully received.
Thanks
Hi,
I am trying to do a load test with multiple unique accounts logging into the test site at once. I am doing a data driven approach, however I do not think I am doing it right. I set up a test with 100 unique accounts bounded, however whenever I try to upload my test to the load test application by capturing user profile it will go through all the steps 100 times before being uploaded. Am I doing it correctly? I feel like I am doing something wrong as the test studio will sometimes crash when trying to go through all 100 accounts tests before being uploaded to the user profile for testing.
Hi,
I am automating an imaging application.
Here we have pan functionality, where in we can drag the image.
After dragging and before dragging I get the screen rectangle and store it. Both the objects are same in my case but I am expecting a changes since the image object is moved.
I have tried refreshing object and visual tree of application, still not able to resolve.
Thanks!
Devendra