Hello Everybody,
How to maintain the page state in QTP.
My scenario is:
1. I opened a notepad file.
2. Entered some text in the notepad file.
3.And changed the font type and color of the notepad file.
And saved that.
4.Now next time when I will open the notepad it is showing
the changed font type and color, rather than the default
values.
Please provide the code.
Thanks,
Gaytri
Answers were Sorted based on User's Feedback
Answer / santhosh
In notepad after writing some text and then saving that
file as .txt again open the notepad change the font
size,font type,etc and write some text and save
Now onwards ur notepad will display the text settings as
mentioned in the previous settings until u again change
those settings,It is the nature of the Windows Operating
Syytem
For Example,If a text is written on notepad and saved on
system1
and again a text is written on notepad asn saved on system2
Now copy text file on system1 to system2 either by using
network or mail any way,but the text will dispaly the
current settings of notepad and vieversa in case of system2
So,Qtp also maintains current page state of that particular
system as the Windows Operating Sytem maintains
| Is This Answer Correct ? | 1 Yes | 0 No |
Hi Santosh,
I think you are not getting my query. Actually what is
happening:
1. Suppose I opened a notepad file and wrote some text, now
here by default font type is courier and size is:10 and
changed the font type and size i.e. i changed the font type
to Curlz MT and size 14 and saved that file and closed that.
2. Now next time when i am opening the new notepad file and
writing some text there, then text is displayed in Curlz MT
and font is 14.
Now what I want here that when after saving the changed
font type and size, next time when i am opening new notepad
file then it should show font type as "Courier" and size
as "10".
I want to capture that original state i.e. when i will
capture the empty notepad file..is it possible that all the
properties of that page is capture automatically? Or I have
to capture each and every property of the notepad.
Thanks,
Gaytri
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / saravana
Hi gayatri,
Santosh has given the correct solution. whenever u make a
change the changes are saved in the Windows folder. Notepad
is nota separate application like WinAmp or Office.The
reason is due to OS..
Thanks & regards,
Saravana
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / k.p.pradeep
Hi,
I think you must have understood the issue by now.
Actually, Notepad is a low-level text editing software
provided along wiht WIndows OS. I has very limited editing
facility. So once the font propeties of Notepad are
changed, it remains the same until it is changed again.
It changes is software-specific, not document-specific as
with MS Word.
So if you want that Notepad should display the original
state whenever you open it, record the previous font state
using QTP and set the recorded state back before performing
some action on Notepad.
Hope this clears your issue.
Regards,
| Is This Answer Correct ? | 1 Yes | 1 No |
what is the diffrence bw qtp architectute and qtp framework?
Lets say,flipkart website...in search button we have entered category[i.e watches] it displays some items...question is how to test price displayed each product is correct or not through qtp
What are advantages of test automation?
Read excel using qtp descriptive programing
How to Synchronize the Browser at Field level? For example if you put Browser.sync(), it will wait upto for that Browser sync only. But It should wait upto total Browser get uploaded with all fields. Note : We don't know Which fields will come in that Browser. Means without knowing field names.
i have a doubt can anyone tell me where are scripts stored while using QTP.Tell me the exact procedure takes place in real time?like how we call scripts how to proceed after writing scripts?how scripts are executed etc?i heard some use Qc whether others dont use.so tell me whole procedure for both the things it will be a very big help.as i have interview i want to have whole idea on this.its very urgent.
0 Answers RR Donnelley, RRDonnelley,
what is recovery manager and recovey scenerio?
How Does Run time data (Parameterization) is handled in QTP?
Hi I am new to QTP. we are planning to implement automation for the application. I am trying to execute the following script: Set ExcelObj=CreateObject ("Excel.Application") ExcelObj.WorkBooks.Add Set NewSheet=ExcelObj.Sheets.Item(1) NewSheet.Name="Order" ExcelObj.Cells(1, 1).Value = "Name" ExcelObj.Cells(1, 2).Value = "Ordernum" ExcelObj.Cells(2, 1).Value = "nam" ExcelObj.Cells(2, 2).Value = "21" ExcelObj.ActiveWorkbook.SaveAs "c:\test1.xls" ExcelObj.Quit Set ExcelObj = Nothing in the above script for the line(ExcelObj.Cells(2, 2).Value = "21") it is inserting the value 21 successfully.this is fine But if i want to insert a variable instead of the constant value then what should be the modification in the script. For example: If user retrives a value throug "GetRoProperty" and wants to insert the value into then how the script changes?
How will u find that how many List boxes( and check boxes) are present in one particular window
How do know the number of browsers opened?
how do find current links in webpage for ex: in yahoowebsite today mainpage is having 50 links and next day same page is having 60 links. if i run same programe it should display total links in webpage ?