Author: nbelaevski
Date: 2009-04-06 17:54:52 -0400 (Mon, 06 Apr 2009)
New Revision: 13402
Modified:
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java
Log:
type* methods deprecated due to FF problems (reproducible on e-mail addresses)
Modified:
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java
===================================================================
---
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java 2009-04-06
21:53:33 UTC (rev 13401)
+++
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java 2009-04-06
21:54:52 UTC (rev 13402)
@@ -993,6 +993,7 @@
* @param locator
* @param string
*/
+ @Deprecated
public void type(String locator, String string) {
selenium.type(locator, "");
StringBuffer value = new StringBuffer(selenium.getValue(locator));
@@ -1019,6 +1020,7 @@
* @param locator an element locator
* @param string the value to type
*/
+ @Deprecated
public void typeOn(String locator, String string) {
StringBuffer value = new StringBuffer(selenium.getValue(locator));
char[] chars = string.toCharArray();
Show replies by date