Search found 7 matches

by JoshuaPereyda
Thu Mar 31, 2011 4:44 pm
Forum: Automation Tools
Topic: Open Browser Duration always zero (0)
Replies: 9
Views: 2682

Re: Open Browser Duration always zero (0)

Thanks, I didn't know about the Delay item; it works perfectly. That's really helpful since I can use it in Turbo mode as well. Thanks! I'll also plan to check out that user guide. @Ciege Thanks for the link and the tip. I'll definitely consider that methodology as well. I haven't done any real C# p...
by JoshuaPereyda
Wed Mar 30, 2011 10:52 pm
Forum: Automation Tools
Topic: Open Browser Duration always zero (0)
Replies: 9
Views: 2682

Re: Open Browser Duration always zero (0)

The file itself tells me that such changes will be overwritten.
by JoshuaPereyda
Wed Mar 30, 2011 10:03 pm
Forum: Automation Tools
Topic: Open Browser Duration always zero (0)
Replies: 9
Views: 2682

Re: Open Browser Duration always zero (0)

Hmm... maybe I'll consider doing that as well. Now that I think about it, I've run into quite a few problems with the Recorder that would be easier to handle with my own code. Do you know of any simple starting guides for that sort of thing? I wasn't really aware that anybody used pure user code.
by JoshuaPereyda
Wed Mar 30, 2011 8:59 pm
Forum: Automation Tools
Topic: Open Browser Duration always zero (0)
Replies: 9
Views: 2682

Re: Open Browser Duration always zero (0)

Are you referring to the .cs file associated with the recording, or the whole project (or something else)? Looking at the auto-generated code, I see part of the problem: void ITestModule.Run() { Mouse.DefaultMoveTime = 300; Keyboard.DefaultKeyPressTime = 100; Delay.SpeedFactor = 1.0; Init(); Report....
by JoshuaPereyda
Wed Mar 30, 2011 8:15 pm
Forum: Automation Tools
Topic: Open Browser Duration always zero (0)
Replies: 9
Views: 2682

Open Browser Duration always zero (0)

I have a test that opens IE to a website before testing certain site functionality. It seems that the Duration I set on the initial step doesn't actually affect the wait time. If I set the first two steps to "10s", the test opens the browser and presses the first button right away, and then waits 10...
by JoshuaPereyda
Wed Mar 23, 2011 3:35 pm
Forum: Automation Tools
Topic: How do I change the timeout for a NotExists validation?
Replies: 2
Views: 2811

Re: How do I change the timeout for a NotExists validation?

Cool, that worked very well! Thank you! I also learned how to make a new Adapter.
by JoshuaPereyda
Wed Mar 23, 2011 1:26 am
Forum: Automation Tools
Topic: How do I change the timeout for a NotExists validation?
Replies: 2
Views: 2811

How do I change the timeout for a NotExists validation?

One action I confirm is that Internet Explorer closes on clicking a certain button. My Validate event has Action="NotExists" and targets my WebDocument object. The Path for that object is "/dom[@domain='myUrl.example']". The validation works, but takes 20 seconds or something to finish. It would be ...