0

ウェブサイトのテストの自動化に webdriver for android を使用しています。Webドライバーのインストールですべてのことを行い、Googleページを開きます.しかし、入力した検索項目を取得しません.ここでは「チーズ」です.以下のコードについて言及しました.解決策を提案してください. ありがとう

public class AndroidSeleniumActivity extends TestCase 
{
    /** Called when the activity is first created. */

    public void testGoogle() throws Exception 
{
        AndroidDriver driver = new AndroidDriver();

        // And now use this to visit Google
        driver.get("http://www.google.com");

        // Find the text input element by its name
        WebElement element =  driver.findElement(By.xpath("html/body/div[2]/div[1]/div[1]/div[2]/div[2]/div/form/fieldset [2]/div/div/div/table/tbody/tr/td[2]/div/input[3]"));

        // Enter something to search for
        element.sendKeys("Cheese!");

       // Now submit the form. WebDriver will find the form for us from the element
        element.submit();

        // Check the title of the page

        // Remember to close the WebDriver connection to free up resources on the
        // Android device (or emulator). Pause for 30 seconds first so we can see
        // the results of the search.
       // Thread.sleep(30000L);
        driver.quit();
      }

}
4

1 に答える 1

0

使用する代わりに、id または name を使用して要素 (検索テキスト フィールド) を検索します。

XPATH: WebElement element =  driver.findElement(By.xpath("html/body/div[2]/div[1]/div[1]/div[2]/div[2]/div/form/fieldset [2]/div/div/div/table/tbody/tr/td[2]/div/input[3]"));

これを使用すると動作します:

WebElement element =  driver.findElement(By.name("q"));
于 2012-06-11T05:40:48.723 に答える