0

スクリプトを実行するたびに国名ドロップダウンからランダムな国名を選択するのを手伝ってください。

xml を使用してみます。

ドロップダウンのXPATHは.//*[@id='intselect']

HTML code:
<select id="intselect" name="intselect" onchange="setCurrency(this);">
<option value="US">UNITED STATES</option>
<option value="AG">ANTIGUA AND BARBUDA</option>
<option value="AR">ARGENTINA</option>
<option value="AW">ARUBA</option>
<option value="AU">AUSTRALIA</option>
<option value="AT">AUSTRIA</option>
<option value="BH">BAHRAIN</option>
<option value="BD">BANGLADESH</option>
</select>

国名.xml

<?xml version="1.0" encoding="UTF-8"?>

<array name="testArray">

<country>
<countryname>UNITED STATES</countryname>
</country>
<country>
<countryname>ANTIGUA AND BARBUDA</countryname>
</country>
<country>
<countryname>ARGENTINA</countryname>
</country>
<country>
<countryname>ARUBA</countryname>
</country>
<country>
<countryname>AUSTRALIA</countryname>
</country>
</array>

//XML からランダムな値を取得するメソッド

public void Fetch_XML()
      {

             SAXBuilder builder = new SAXBuilder();
             File xmlFile = new File("C:\\Documents and Settings\\vlakshm\\MyTNG\\list\\countrynames.xml");
             Element node = null;
             try {

              //Element result=null;
            Document document = (Document) builder.build(xmlFile);
            Element rootNode = document.getRootElement();
            List list = rootNode.getChildren("country");

            Random random = new Random();
            int newcountryname= random.nextInt(list.size());

            node = (Element) list.get(newcountryname);

             }//End of Try loop
             catch (IOException io) {
            System.out.println(io.getMessage());
             } catch (JDOMException jdomex) {
            System.out.println(jdomex.getMessage());
             }
             node.getChildText("countryname");
             //element_array = driver.findElement(By.xpath("//select[@id='intselect']/option"));
         }//End of randomPartnum method

// ドロップダウンで選択するメソッドを呼び出しています

public void Choser() {
      Fetch_XML();
      driver.findElement(By.id("intselect")).click();      
        System.out.println("---------------------------------------");
        System.out.println("Country choser layer test case-Success");
        System.out.println("---------------------------------------");

  } 

しかし、mはヌルポインタ例外を取得しています.誰かがコードの問題を整理するのを手伝ってくれますか?

4

2 に答える 2

0

これは私のために働く:

private void randomSelect(String id) {
    WebElement webElement = driver.findElement(By.id(id));

    Select select = new Select(webElement);

    List<WebElement> selections = select.getOptions();

    int index = (int)( Math.random() * selections.size());

    select.selectByIndex(index);
}
于 2013-09-26T13:23:17.320 に答える
0

Java/Selenium テスト スクリプトで

  1. テスト データ配列の長さを取得する
  2. 0-LengthOfArray-1 の範囲で乱数を生成します (指定された範囲で乱数を生成します)
  3. 上記の番号を使用して、テスト データ配列から国を選択します
于 2013-06-11T05:27:04.443 に答える