だから私はこれまでこのような問題を抱えたことがないので、これは少し頭を悩ませます。ステープルのようなサイトでストアの可用性をチェックするJavaプログラムを作成しようとしています。http://www.staples.com/Kodak-EasyShare-Z5010-Digital-Camera/product_369838 このようなサイトにアクセスし、[Check in Store Availability]をクリックすると、JavaScriptウィンドウが表示されます。firebugとfirepathを使用して、郵便番号入力ボックスのxpathが「.//*[@id='zipCode']」であることがわかりました。プログラムのそのボックスに情報を入力しようとすると、Webドライバーがテキストボックスを見つけることができません。補足として、最初にクリックしない限り、ファイアバグのあるボックスを実際に見つけることはできません。
私の質問は、Webドライバーでそのボックスに移動するにはどうすればよいですか?これにはセレン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();
}
}