aboutsummaryrefslogtreecommitdiff
path: root/manualtest/src
diff options
context:
space:
mode:
authorKevin Jin <kjin@google.com>2015-02-20 09:35:39 -0800
committerKevin Jin <kjin@google.com>2015-02-20 14:37:53 -0800
commit4b31201b5a2dbf8036da5a8d089a68a39cc1dc44 (patch)
tree0a4a6d976ca45f3b87433927d57d50cb3cd51b41 /manualtest/src
parent85a1731f32032690e528a6ca1084aa148200569b (diff)
downloaddroiddriver-4b31201b5a2dbf8036da5a8d089a68a39cc1dc44.tar.gz
rename package 'com.google.android' to 'io.appium'
Change-Id: I2c7c96cd6a6971806e2ea7b06cd6c2c6666e4340
Diffstat (limited to 'manualtest/src')
-rw-r--r--manualtest/src/io/appium/droiddriver/manualtest/ManualTest.java (renamed from manualtest/src/com/google/android/droiddriver/manualtest/ManualTest.java)24
1 files changed, 11 insertions, 13 deletions
diff --git a/manualtest/src/com/google/android/droiddriver/manualtest/ManualTest.java b/manualtest/src/io/appium/droiddriver/manualtest/ManualTest.java
index c1f3946..6e95272 100644
--- a/manualtest/src/com/google/android/droiddriver/manualtest/ManualTest.java
+++ b/manualtest/src/io/appium/droiddriver/manualtest/ManualTest.java
@@ -1,24 +1,22 @@
-package com.google.android.droiddriver.manualtest;
+package io.appium.droiddriver.manualtest;
import android.app.Activity;
-import com.google.android.droiddriver.actions.TextAction;
-import com.google.android.droiddriver.finders.By;
-import com.google.android.droiddriver.finders.Finder;
-import com.google.android.droiddriver.helpers.BaseDroidDriverTest;
-import com.google.android.droiddriver.helpers.DroidDrivers;
+import io.appium.droiddriver.finders.By;
+import io.appium.droiddriver.finders.Finder;
+import io.appium.droiddriver.helpers.BaseDroidDriverTest;
/**
* This is for manually testing DroidDriver. It is not meant for continuous
* testing. Instead it is used for debugging failures. It assumes the device is
* in a condition that is ready to reproduce a failure. For example,
* {@link #testSetTextForPassword} assumes the password_edit field is displayed
- * on screen and has input focus.
+ * on screen.
* <p>
* Run it as (optionally with -e debug true)
*
* <pre>
- * adb shell am instrument -w com.google.android.droiddriver.manualtest/com.google.android.droiddriver.runner.TestRunner
+ * adb shell am instrument -w io.appium.droiddriver.manualtest/io.appium.droiddriver.runner.TestRunner
* </pre>
*/
public class ManualTest extends BaseDroidDriverTest<Activity> {
@@ -28,13 +26,13 @@ public class ManualTest extends BaseDroidDriverTest<Activity> {
public void testSetTextForPassword() {
Finder password_edit = By.resourceId("com.google.android.gsf.login:id/password_edit");
- driver.on(password_edit).perform(
- new TextAction("A fake password that is not empty and needs to be cleared by setText"));
- String password = "1";
- driver.on(password_edit).setText(password);
+ String oldPassword = "A fake password that is not empty and needs to be cleared by setText";
+ String newPassword = "1";
+ driver.on(password_edit).setText(oldPassword);
+ driver.on(password_edit).setText(newPassword);
// This won't work because password_edit does not reveal text to
// Accessibility service. But you can see the length changed on screen.
- // assertEquals(password, driver.on(password_edit).getText());
+ // assertEquals(newPassword, driver.on(password_edit).getText());
assertEquals(null, driver.on(password_edit).getText());
}
}