Search found 27 matches
- Fri Feb 04, 2011 10:25 pm
- Forum: Beginners
- Topic: Help needed with Webrecorder - Beginner
- Replies: 1
- Views: 4880
Help needed with Webrecorder - Beginner
I am new to using the Webrecorder tool. I am trying to record the following: Open Yahoo.com Search hello World Click Web search Exit the screen. I am doing this in IE. However the script does not record the button click (I don't see a ClickTag or anything like that in the script generated). Is tehre...
- Wed Jan 19, 2011 7:37 pm
- Forum: Beginners
- Topic: Reusing subroutines across macros
- Replies: 2
- Views: 4559
Reusing subroutines across macros
I have Macro A that has few subroutines that I would like to reuse in other scripts. For example, Macro A has a subroutine CallSearch. I would like to be able to call the same subroutine from a different macro. The difference is the search keyword I pass. I tried Include, Macro commands, however the...
- Mon Jan 17, 2011 7:24 pm
- Forum: Beginners
- Topic: Help needed - Script is not running in Windows XP
- Replies: 10
- Views: 12814
- Mon Jan 17, 2011 4:46 pm
- Forum: Beginners
- Topic: Help needed - Script is not running in Windows XP
- Replies: 10
- Views: 12814
Thanks again. Here's a portion of my code: Let>username=automationtest@x.com Let>passwd=test Change Directory>C:\Go to Directory path where application is installed ExecuteFile>Test.exe , Key Wait>2.0 //The code below passes a user credential to the Authentication (Login page) IfWindowOpen>Authentic...
- Mon Jan 17, 2011 3:47 pm
- Forum: Beginners
- Topic: Help needed - Script is not running in Windows XP
- Replies: 10
- Views: 12814
Thanks for your reply. I am using the wildcard to setfocus. However that does not work. I've tried to include more details in my comment. I would appreciate any help! Another possibility might be that the window name is not exactly the same on the two machines. A wild card character (*) can be used ...
- Mon Jan 17, 2011 3:45 pm
- Forum: Beginners
- Topic: Help needed - Script is not running in Windows XP
- Replies: 10
- Views: 12814
I run the scripts after opening the main screen. I manually open the application main window and run the scripts to open child windows in this application. Before passing a command to open a child window, I check whether the main window is open. (I can see the window is open since I manually opened ...
- Fri Jan 14, 2011 11:16 pm
- Forum: Beginners
- Topic: Help needed - Script is not running in Windows XP
- Replies: 10
- Views: 12814
The message I see is Error in : Script name Line: - Specified Window Not Present Any Subsequent Key Sends In Scripts may cause Exceptions. I believe it fails to recognize the Setfocus commands. Since my application does not get highlighted, the further commands I pass from scripts is not being recog...
- Fri Jan 14, 2011 9:23 pm
- Forum: Beginners
- Topic: Help needed - Script is not running in Windows XP
- Replies: 10
- Views: 12814
Help needed - Script is not running in Windows XP
Hello,
My scripts work well in Windows Vista. I am using a dual monitor where I have Mjtnet open in one window and my windows application running in other. I have a windows XP machine where I want these scripts to run. Its a single monitor and I am having issues here.
Please help!
Thanks.
My scripts work well in Windows Vista. I am using a dual monitor where I have Mjtnet open in one window and my windows application running in other. I have a windows XP machine where I want these scripts to run. Its a single monitor and I am having issues here.
Please help!
Thanks.
- Thu Jan 13, 2011 9:34 pm
- Forum: Technical / Scripting
- Topic: Need suggestions on more testing options
- Replies: 2
- Views: 13766
Need suggestions on more testing options
I am using Macro Scheduler for 2 months now to do GUI testing of a Windows application. It works well and it is easy to use. the forum is of great help for new learners like me. Appreciate the super fast responses and suggestions. The windows application I am testing has lots of shortcuts for naviga...
- Mon Jan 10, 2011 5:10 pm
- Forum: Beginners
- Topic: Constructing dynamic strings
- Replies: 3
- Views: 6285
Thanks for your reply. I am trying to do the following. I am passing a keyword as input to a search window in my application. If the keyword does not return any results, then I will quit. Else I'll call another subroutine and continue. Code Snippet is something like: Let>Keyword=xim GoSub>CallApplic...
- Fri Jan 07, 2011 10:46 pm
- Forum: Beginners
- Topic: Constructing dynamic strings
- Replies: 3
- Views: 6285
Constructing dynamic strings
I am looking to construct a dynamic string, for instance I will be assigning a new value to the variable keyword and then invoke the script. If the keyword does not return search results, my application gives the message:No matches found for search text 'x' Say keyword=x No matches were found for se...
- Tue Jan 04, 2011 9:47 pm
- Forum: Beginners
- Topic: Question on querying/retrievning data from Database
- Replies: 1
- Views: 3421
- Tue Jan 04, 2011 8:57 pm
- Forum: Beginners
- Topic: Question on querying/retrievning data from Database
- Replies: 1
- Views: 3421
Question on querying/retrievning data from Database
I am trying to retrieve data from my database. Let>str=Driver={SQL Server};Server=;Database=;Uid=;Pwd=str,dbH //dbH returns 1 - Does this imply the connection was established? Let>SQL=Select top 10 * from Table DBExec>dbH,SQL,result,numRecs,numFields MessageModal>numRecs MessageModal>numFields //Whe...
- Tue Jan 04, 2011 7:11 pm
- Forum: Technical / Scripting
- Topic: Compare Strings using if statement
- Replies: 3
- Views: 7058
- Tue Jan 04, 2011 4:00 pm
- Forum: Technical / Scripting
- Topic: Compare Strings using if statement
- Replies: 3
- Views: 7058
Compare Strings using if statement
I am trying to compare two strings and call a subroutine if the strings are equal. The code always goes to else statement even if the strings are the same. My code snippet Let>Name="This is test" //From my application, I am getting GetName GetClipBoard>GetName wait>0.5 if>GetName=Name GoSub>GoHere e...