- ranjan.sarkar@tcs.com
- Posts : 2
Join date : 2011-02-01
How to locate a particular string on a webpage using selenium commands
Tue Feb 01, 2011 7:27 pm
I want look for a string in a web page and replace the string with another string. I cannot find out with which selenium command i can do that.Please help.Its urgent
Re: How to locate a particular string on a webpage using selenium commands
Wed Feb 02, 2011 5:59 pm
hi,
If you want to replace the string coming in web element like text field and replace with other string that will be possible.
But if you want to replace the hard code string on weppage which is inside the HTML then You can't. You'll get the all the information present on the page through "view source" command but you'll not able to changed that on browser.
use the following commands
storeAttribute ( attributeLocator, variableName )
Gets the value of an element attribute. Beware of http://jira.openqa.org/browse/SEL-280, which will lead some event handlers to get null event arguments. Read the bug for more details, including a workaround.
Arguments:
* attributeLocator - an element locator followed by an
* variableName - the name of a variable in which the result is to be stored.
Returns:
the value of the specified attribute
storeHtmlSource ( variableName )
Returns the entire HTML source between the opening and closing "html" tags.
Returns:
the entire HTML source
Hope this will help you. Best of luck
If you want to replace the string coming in web element like text field and replace with other string that will be possible.
But if you want to replace the hard code string on weppage which is inside the HTML then You can't. You'll get the all the information present on the page through "view source" command but you'll not able to changed that on browser.
use the following commands
storeAttribute ( attributeLocator, variableName )
Gets the value of an element attribute. Beware of http://jira.openqa.org/browse/SEL-280, which will lead some event handlers to get null event arguments. Read the bug for more details, including a workaround.
Arguments:
* attributeLocator - an element locator followed by an
* variableName - the name of a variable in which the result is to be stored.
Returns:
the value of the specified attribute
storeHtmlSource ( variableName )
Returns the entire HTML source between the opening and closing "html" tags.
Returns:
the entire HTML source
Hope this will help you. Best of luck
- auto_ashish1Active particpant
- Posts : 21
Join date : 2011-03-10
Re: How to locate a particular string on a webpage using selenium commands
Wed Apr 06, 2011 2:41 pm
You can use any of following
1) storeAttribute ( attributeLocator, variableName )
2) getText ( attributeLocator)
Regards
Ashish
itsthakur@gmail.com
91-9888179981
For online Selenium training go to my website- www.sejsoft.com
1) storeAttribute ( attributeLocator, variableName )
2) getText ( attributeLocator)
Regards
Ashish
itsthakur@gmail.com
91-9888179981
For online Selenium training go to my website- www.sejsoft.com
Permissions in this forum:
You cannot reply to topics in this forum