- umashankarActive particpant
- Posts : 24
Join date : 2011-11-14
User-Extension Issue
Thu Nov 24, 2011 1:03 pm
Hi All,
Now I am trying User-Extensions in Selenium IDE and currently am facing one problem,
Requirement:
1. Open Times of India Page
2. storeText (i.e like 1+2= ) [This value get changes evertime when loading the page)
3. Want to calculate both and put in the textbox.
Here I have used my own function CalculateSum, But am getting error as,
Code:
Open | http://timesofindia.indiatimes.com/ |
waitForPageToLoad | |
storeText | //*[@id="mathq2"] | aaa
echo | ${aaa} |
calculateSum
Log:
User-Extensions Function Used as:
Selenium.prototype.doCalculateSum = function()
{
var text = storedVars['aaa'];
var arr = text.split(" ");
var sum = new Number(arr[0]) + new Number(arr[2]);
Selenium.doType("//*[@id='mathuserans2']", sum) //line Number-> 108
}
Guys help me to figure out this issue..
Thanks,
umashankar
Now I am trying User-Extensions in Selenium IDE and currently am facing one problem,
Requirement:
1. Open Times of India Page
2. storeText (i.e like 1+2= ) [This value get changes evertime when loading the page)
3. Want to calculate both and put in the textbox.
Here I have used my own function CalculateSum, But am getting error as,
Code:
Open | http://timesofindia.indiatimes.com/ |
waitForPageToLoad | |
storeText | //*[@id="mathq2"] | aaa
echo | ${aaa} |
calculateSum
Log:
- [info] Executing: |open | http://timesofindia.indiatimes.com/ | |
- [info] Executing: |waitForPageToLoad | | |
- [info] Executing: |storeText | //*[@id="mathq2"] | aaa |
- [info] Executing: |echo | ${aaa} | |
- [info] echo: 7 + 0 =
- [info] Executing: |calculateSum | | |
- [error] Unexpected Exception: fileName -> chrome://selenium-ide/content/tools.js -> file:///C:/Selenium/User-Extensions/user-extensions.js, lineNumber -> 108
User-Extensions Function Used as:
Selenium.prototype.doCalculateSum = function()
{
var text = storedVars['aaa'];
var arr = text.split(" ");
var sum = new Number(arr[0]) + new Number(arr[2]);
Selenium.doType("//*[@id='mathuserans2']", sum) //line Number-> 108
}
Guys help me to figure out this issue..
Thanks,
umashankar
Permissions in this forum:
You cannot reply to topics in this forum