Right Boundary and Left Boundary in Correlation

What is Right Boundary and Left Boundary in Correlation??
How to find them in the script?

Questions by brindhavana

Showing Answers 1 - 15 of 15 Answers

cherri88

  • Aug 21st, 2008
 

LB and RB are used to capture the  different dyamic valus returned by the sever. you have to use web_reg_save function for this

  Was this answer useful?  Yes

The left and right boundries are the boundries from each side of the searched string within the serber responses.

Notice that after each script recording the generation log is been populated with the recorded request to the erver and responses from the server, this log is to be used to find any dynamic strings taht need to be coreolated.

Using the web_reg_save_param you can capture the requested string and use it as a parameter in your script.

int web_reg_save_param( const char *ParamName, <List of Attributes>, LAST ); 

example:
web_reg_save_param("parameterName", "LB=text to the left of the requested string", "RB=text to the right of the requested string",LAST);

for better understanding view help for "web_reg_save_param"

Cheers :)

  Was this answer useful?  Yes

venkat

  • Jan 27th, 2016
 

This is the data iam getting from server. How do I include " in the the LB.
web_reg_save_param_ex("ParamName=newSessionId", "LB=item","RB=,", LAST);
by this I am able to get :"1986"". but I only want 1986 please help

  Was this answer useful?  Yes

Rahul

  • Feb 2nd, 2016
 

Not That Much. Need some more clarification Please -:)

  Was this answer useful?  Yes

Pushkal Shukla

  • Jul 27th, 2016
 

put RB as "RB=,""

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions