0

所以我以前从来没有遇到过这样的问题,所以这让我有点不知所措。我正在尝试编写一个 java 程序来检查诸如订书钉之类的站点中的商店可用性。http://www.staples.com/Kodak-EasyShare-Z5010-Digital-Camera/product_369838 在我访问这样的网站并单击“检查商店可用性”后,会弹出一个 JavaScript 窗口。使用 firebug 和 firepath,我发现 zipcode 输入框的 xpath 为“.//*[@id='zipCode']”。当我尝试在程序中的该框中输入信息时,webdriver 找不到该文本框。另外要注意的是,除非我先单击它,否则我实际上也找不到带有 firebug 的框。

我的问题是:如何使用 webdriver 导航到该框?我为此使用硒 2.21。如果有人想尝试运行我的代码,我将关键部分分解为一个可运行的程序

import java.util.ArrayList;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxProfile;

public class Test{

public static void main(String[] args) throws InterruptedException{
    ArrayList<String> pIDs = new ArrayList<String>();
    FirefoxProfile profile = new FirefoxProfile();
    profile.setPreference("general.useragent.override", "some UA string");
    WebDriver driver = new FirefoxDriver(profile);
    String link, availStr;
    String output = null;

    //Gets me through their initial zipcode prompt before I can see any products on site
    //---------------------------------------
    String url = "http://www.staples.com/Tablets-Tablets/cat_CL165566";
    driver.get(url);
    driver.findElement(By.xpath(".//*[@id='zip']")).sendKeys("55555");
    driver.findElement(By.xpath(".//*[@id='submitLink']")).click();
    try {
        Thread.sleep(1000);
    } catch (InterruptedException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }
    //--------------------------------------------

    driver.get("http://www.staples.com/Kodak-EasyShare-Z5010-Digital-Camera/product_369838");
    System.out.println("Now on item: " + driver.getTitle() + " " + driver.findElement(By.xpath(".//*[@class='note none']")).getText() + "\n");
    driver.findElement(By.xpath("//li[@class='storeavail']/a")).click();
    Thread.sleep(400);

    driver.findElement(By.xpath(".//*[@id='zipCode']")).sendKeys("90210");
    driver.findElement(By.xpath(".//*[@id='searchdistance']/div/a")).click();

    driver.quit();
}

}

4

1 回答 1

3

在处理框架中的任何元素之前,您应该切换到框架。

driver.switchTo().frame(weblement/nameofframe)
于 2012-05-25T18:31:50.407 回答