Hello, Hi.
I want to ask one question regarding the title above. How do I do for test drag and drop? because I have to drag the element and drop it at some space then it will popup some data. How I can do that? can you please teach me because I am still beginner for test studio.
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