Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Name2 field on my website under test which should populate itself when value in the Name1 field is entered.

The Name2 field is not getting populated by itself in IE on running tests through Selenium RC

On running tests on Firefox the Name2 field is populated fine.

Can you please suggest any way to overcome this issue?

Thanks, Abhinav

share|improve this question
1  
What is the code you are using to populate the fields.. ? – Mike Kwan Jun 1 '11 at 13:48
From your description, Name2 field should be updated when value is entered in Name1 - it looks like an application issue rather than selenium issue. – A.J Jun 1 '11 at 16:06
Hi Mike, we were able to solve the issue by using Focus method for the respective fields. – Abhinav Jun 7 '11 at 13:50

1 Answer

i thinks you are using selenium.type("asasas").

this will not fire any events. it just paste the value in the DOM element using .value or .innerHTML ect..

so the quick approach would be , type native keys

use, selenium.focus("locator"); selenium.keyPressNative("17");

if you want to enter a whole string than a single character, there are many client programmatic approaches

for example to enter a string of numbers 12345

for(char ch : "12345".toCharArray()) { selenium.keyPressNative(String.valueOf((int)ch)); }

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.