bootstrapのテキストボックスの操作
2448 ワード
setText package io.appium.android.bootstrap.handler;
import com.android.uiautomator.core.UiDevice;
import com.android.uiautomator.core.UiObjectNotFoundException;
import io.appium.android.bootstrap.*;
import org.json.JSONException;
import java.util.Hashtable;
/**
* This handler is used to set text in elements that support it.
*
*/
public class SetText extends CommandHandler {
/*
* @param command The {@link AndroidCommand} used for this handler.
*
* @return {@link AndroidCommandResult}
*
* @throws JSONException
*
* @see io.appium.android.bootstrap.CommandHandler#execute(io.appium.android.
* bootstrap.AndroidCommand)
*/
@Override
public AndroidCommandResult execute(final AndroidCommand command)
throws JSONException {
if (command.isElementCommand()) {
// Only makes sense on an element
try {
final Hashtable<String, Object> params = command.params();
final AndroidElement el = command.getElement();
String text = params.get("text").toString();
Boolean pressEnter = false;
if (text.endsWith("\
")) {
pressEnter = true;
text = text.replace("\
", "");
Logger.debug("Will press enter after setting text");
}
final Boolean result = el.setText(text);
if (pressEnter) {
final UiDevice d = UiDevice.getInstance();
d.pressEnter();
}
return getSuccessResult(result);
} catch (final UiObjectNotFoundException e) {
return new AndroidCommandResult(WDStatus.NO_SUCH_ELEMENT,
e.getMessage());
} catch (final Exception e) { // handle NullPointerException
return getErrorResult("Unknown error");
}
} else {
return getErrorResult("Unable to set text without an element.");
}
}
}
こんなに多くの篇を书いて、上のいくつかの行のコードはすべて熟知してすべて更に熟知することができなくて、第1篇の文章のように一つ一つ绍介したのではありませんて、setTextの方法は编集可能な都のテキストの枠の中でデータを入力するので、同じく特别な地方がなくて、UiobjectのsetTextの方法を呼び出すことにほかならなくて、しかしよく见てみると、それはいくつかの処理をして、例えば文字列の改行符の削除、入力が終わったらenterキーを押して入力を完了します.では、私は前にcaseを書くときも自分でしなければなりません.enterキーを押さないと、いくつかの入力方法に問題があります.例えば、中国語は先にあなたが入力した文字が代表する漢字を出してから、enterを押してテキストボックスに正しく表示されます.英語の入力法のように入力ボックスに直接表示されません.だからappiumはこれらを考慮して私たちに処理してくれました.
getText
言うまでもなく、UiobjectのgetTextメソッドを呼び出して編集ボックスのデータを取得するまで簡単です.
package io.appium.android.bootstrap.handler;
import com.android.uiautomator.core.UiDevice;
import com.android.uiautomator.core.UiObjectNotFoundException;
import io.appium.android.bootstrap.*;
import org.json.JSONException;
import java.util.Hashtable;
/**
* This handler is used to set text in elements that support it.
*
*/
public class SetText extends CommandHandler {
/*
* @param command The {@link AndroidCommand} used for this handler.
*
* @return {@link AndroidCommandResult}
*
* @throws JSONException
*
* @see io.appium.android.bootstrap.CommandHandler#execute(io.appium.android.
* bootstrap.AndroidCommand)
*/
@Override
public AndroidCommandResult execute(final AndroidCommand command)
throws JSONException {
if (command.isElementCommand()) {
// Only makes sense on an element
try {
final Hashtable<String, Object> params = command.params();
final AndroidElement el = command.getElement();
String text = params.get("text").toString();
Boolean pressEnter = false;
if (text.endsWith("\
")) {
pressEnter = true;
text = text.replace("\
", "");
Logger.debug("Will press enter after setting text");
}
final Boolean result = el.setText(text);
if (pressEnter) {
final UiDevice d = UiDevice.getInstance();
d.pressEnter();
}
return getSuccessResult(result);
} catch (final UiObjectNotFoundException e) {
return new AndroidCommandResult(WDStatus.NO_SUCH_ELEMENT,
e.getMessage());
} catch (final Exception e) { // handle NullPointerException
return getErrorResult("Unknown error");
}
} else {
return getErrorResult("Unable to set text without an element.");
}
}
}
言うまでもなく、UiobjectのgetTextメソッドを呼び出して編集ボックスのデータを取得するまで簡単です.