所以我之前从来没有遇到这样的问题,所以这有点过头了。我正在尝试编写一个java程序来检查像钉书针这样的网站中的商店可用性。 http://www.staples.com/Kodak-EasyShare-Z5010-Digital-Camera/product_369838 在我访问这样的网站并点击" Check in Store Availability"后,会弹出一个javascript窗口。使用firebug和firepath,我发现zipcode输入框的xpath为" .// * [@ id =' zipCode']"。当我尝试在程序中输入信息时,webdriver无法找到文本框。另外需要注意的是,除非我先点击它,否则我实际上无法找到带有firebug的盒子。
我的问题是:如何使用webdriver导航到该框?我正在使用selenium 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();
}
}
答案 0 :(得分:2)
在处理框架中的任何元素之前,您应该切换到框架。
driver.switchTo().frame(weblement/nameofframe)