0

現在、Selenium/Fluentlenium を使用して AngularJs に大きく依存している Web サイトの e2e テストを実装しようとしています。

以前にこのアプローチを問題なく使用したことがありますが、phantomJS は単に Angular の実行を処理できないようです。

Chromeで「ページソースを表示」すると、バインディング({{ object.item }}など)だけが表示されますが、「要素を検査」すると、期待するコンテンツが得られます。

HTML が次のようになっているとします ($http によって読み込まれ、$scope.objects が入力された後、$scope.loading が false であると仮定します)。

<table ng-show="!loading" id="itemList">
<tbody>
    <tr ng-repeat="object in objects">
        <td class="item1">{{ object.item1 }}</td>
        <td class="item2">{{ object.item2 }}</td>
        <td class="item3">{{ object.item3 }}</td>
        <td class="itemSafe"><input type="checkbox" disabled="true" ng-checked="object.itemSafe == 1"></td>
    </tr>
</tbody>
</table>

これまでのところ、これは私が得たものです:

private static final int TIMEOUT = 10;
private static final int PORT = 3333;
protected static final String URL = "http://localhost:" + PORT;

public static PhantomJSDriver driver = setupWebDriver();
public static WebDriverWait wait = new WebDriverWait(driver, TIMEOUT);
public static TestBrowser browser = testBrowser(driver);

    private static PhantomJSDriver setupWebDriver() {
        DesiredCapabilities caps = new DesiredCapabilities();
        caps.setJavascriptEnabled(true);

        LoggingPreferences logPrefs = new LoggingPreferences();
        logPrefs.enable(LogType.BROWSER, Level.ALL);
        caps.setCapability(CapabilityType.LOGGING_PREFS, logPrefs);

        String path = findDriverPath(); //Not relevant, just finds the binary
        caps.setCapability(PhantomJSDriverService.PHANTOMJS_EXECUTABLE_PATH_PROPERTY, path);
        return new PhantomJSDriver(caps);
    }

    @Before
    public static void setup() throws Throwable {
        driver.manage().window().setSize(new Dimension(1280, 720));
        driver.get(URL);
    }

    @Test
    public void testFindItem1(){
            browser.$("#items").click();  //opening site has link with id
            wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("itemList")));  //table element
            browser.$("#filter").text("item1Text");  //input element for filtering
            List<WebElement> item1s = driver.findElements(By.className("item1"));
            for(WebElement item1: item1s){
            System.out.println(item1.getText()); //outputs "{{ object.item1 }}"  once <-- MY PROBLEM
        }
    }

....これにより、「{{ object.item1 }}」が一度だけ出力されますが、Chrome では完全に機能します。

編集:私の質問が十分に明確ではなく申し訳ありません.次のJavaScriptコードを含める必要がありました:

$scope.objects = [{item1: "one", item2: "two", item3: "three", itemSafe: "1"}, {item1: "four", item2: "five", item3: "six", itemSafe: "0"}];
$scope.loading = false;

それを考えると、私の予想されるhtmlは次のとおりです。

<tr>
<td class="item1">one</td>
<td class="item2">two<td>
<td class="item3">three</td>
<td class="itemSafe"><input type="checkbox" disabled="true" ng-checked="object.itemSafe == 1"></td>
</tr>
<tr>
<td class="item1">four</td>
<td class="item2">five<td>
<td class="item3">six</td>
<td class="itemSafe"><input type="checkbox" disabled="true" ng-checked="object.itemSafe == 1"></td> 
</tr>

その JSON 配列を考えると、最初のチェックボックスはチェックする必要がありますが、2 番目のチェックボックスはチェックしないでください。

4

1 に答える 1

0

あなたのセレンはあなたのコードに従って正しく動作しているようです - class = "item1" の要素は1つだけです

おそらくあなたが望むのは次のようなものです

List<WebElement> item1s = driver.findElements(By.tagName("td"));

希望する結果が得られない場合は、期待される正しい結果をより明確に説明してください。

于 2016-03-23T02:18:30.650 に答える