I am typing some value, on change do a total. But somehow, this event is not getting fired with selenium type command.
I also tried typeKey and typeAt ..But no success. Any workaround for this ?
|
I am typing some value, on change do a total. But somehow, this event is not getting fired with selenium type command. I also tried typeKey and typeAt ..But no success. Any workaround for this ? |
|||
|
|
|
If you're using Selenium 1.x, there is a fireEvent command that you can use to manually trigger the onChange event after typing in the value. Maybe that would solve your problem? |
|||
|
|
|
To trigger the onchange event, try adding this command in Selenium IDE:
|
|||
|
|
|
Your solution normally is found by looking at the JavaScript code.. An option you always have is to put in the value and manually trigger the actual OnChange event from code. There are an open issue about this link text Problem with FireFox Windows not being active and prevents the OnChange to be triggered. Try this before using typeKeys command:
|
|||||
|
|
This worked for me in IDE do the following 3 commands in order
The source looks like this (input was letter
|
||||
|
|