how to select text from a disabled field?
Tue Aug 25, 2009 6:48 pm
Hi,
one othe user having facing problem to get the the text of disabled object. The problem is:
I want to select the text from a disabled field. How can I do that with the IDE?
The field:
input id="textbox" type="text" style="width: 256px;" disabled="disabled" value="35899" name="textbox"
I hope that there is a solution on this.
one othe user having facing problem to get the the text of disabled object. The problem is:
I want to select the text from a disabled field. How can I do that with the IDE?
The field:
input id="textbox" type="text" style="width: 256px;" disabled="disabled" value="35899" name="textbox"
I hope that there is a solution on this.
Re: how to select text from a disabled field?
Tue Aug 25, 2009 6:54 pm
hi,
you get the text with the help of following command:
storeValue ( locator, variableName )
Gets the (whitespace-trimmed) value of an input field (or anything else with a value parameter). For checkbox/radio elements, the value will be "on" or "off" depending on whether the element is checked or not.
Arguments:
* locator - an element locator
* variableName - the name of a variable in which the result is to be stored.
Returns:
the element value, or "on/off" for checkbox/radio elements
For Example:
String textOfDisableField = getvalue("id/xpath of the object");
Best of Luck
you get the text with the help of following command:
storeValue ( locator, variableName )
Gets the (whitespace-trimmed) value of an input field (or anything else with a value parameter). For checkbox/radio elements, the value will be "on" or "off" depending on whether the element is checked or not.
Arguments:
* locator - an element locator
* variableName - the name of a variable in which the result is to be stored.
Returns:
the element value, or "on/off" for checkbox/radio elements
For Example:
String textOfDisableField = getvalue("id/xpath of the object");
Best of Luck
Permissions in this forum:
You cannot reply to topics in this forum