开发者

How to write text values in masked field?

i need some help relate开发者_开发技巧d to masked field in web form. Syntax of phone field is (___)___-_____, if i execute this code in ruby shell

browser.text_field(:id => 'txtphone').set '7893457889'

... nothing has been added in the phone field. then i find this solution in one blog, someone said first unmask this field using this code.

browser.text_field(:id,'txtphone').fire_event("unmask")

then write the above code again.

browser.text_field(:id => 'txtphone').set '7893457889'

but still nothing has happened. kindly help me out...am i doing right or still there is a mistake.


If you could provide some sample of the page HTML it will be easier to give you an answer more likely to work.

Given what you have provided us to work from, we have to go with the normal way that such masked input fields typically work and go from there. Usually pages with this kind of thing are calling a javascript function which is triggered by a specific event. Most often this is an event such as onchange but it may be something like keypress or any other even that happens when a normal user types or pasts text into the cell.

You likely need to experiment with using the '.fire_event' method to fire the proper javascript event, or if that fails entirely making a direct call to execute the proper script

When doing this do not confuse the name of a script such as 'applymask' or somesuch with the javascript event which causes that script to be invoked.

The answers to this question How to find out which JavaScript events fired? include some good information on how to use firebug or the chrome developer tools to figure out what events are being fired when you interact with an object on the browser screen.

Update: instead of responding here to indicate if this answer was of any use the OP reposted their question here Masked Text Box issue and by digging around on the vendor's demo site (since that time he actually had posted some of the HTML when we asked for it) I was able to find a solution using watir-webdriver that worked for him.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜