Hello
Running Selenium IDE 2.4 and SmartClient v9.0.
This simple example from the Feature Explorer does not work with Selenium performing just a simple test case. If you remove the masks it records correctly. Why? Is this an issue with SmartClient and Selenium with masks?
Thank you in advance.
Steven
Running Selenium IDE 2.4 and SmartClient v9.0.
This simple example from the Feature Explorer does not work with Selenium performing just a simple test case. If you remove the masks it records correctly. Why? Is this an issue with SmartClient and Selenium with masks?
Code:
isc.DynamicForm.create({
ID: "contactForm",
width: 400,
fields: [
{ name: "firstName", title: "First name", type: "text",
mask: ">?<??????????????", hint: ">?<??????????????"},
{ name: "lastName", title: "Last name", type: "text",
mask: ">?<??????????????", hint: ">?<??????????????"},
{ name: "state", title: "State", type: "text",
mask: ">LL", hint: ">LL"},
{ name: "phoneNo", title: "Phone no", type: "text",
mask: "(###) ###-####", hint: "(###) ###-####", showHintInField: true}
]
});
Steven
Comment