3

fileUploadSimple http://www.primefaces.org/showcase/ui/fileUploadSimple.jsf を webElement.sendKeys() メソッドで正常にテストしました。自動アップロードでは機能しません

PrimeFaces fileUploadAuto http://www.primefaces.org/showcase/ui/fileUploadAuto.jsfを Selenium WebDriver でテストする方法はありますか?

4

1 に答える 1

5

私もあなたの開発が好きです。私の知識を共有するつもりですが、もっと良い方法があるかもしれません。

サーバー側のjsfコード

<h:form id="lifeProposalEntryForm" enctype="multipart/form-data">
    <p:fileUpload fileUploadListener="#{AddNewLifeProposalActionBean.handleProposalAttachment}"  
            mode="advanced" multiple="true" sizeLimit="3000000" update="customerEntryPanel attachmentDataList"
            allowTypes="/(\.|\/)(gif|jpe?g|png)$/" id="proposalAttachment"/>    
</h:form>

クライアント側のhtmlコード

<div id="lifeProposalEntryForm:proposalAttachment" class="ui-fileupload ui-widget">
    <div class="ui-fileupload-buttonbar ui-widget-header ui-corner-top">
        <span class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-icon-left ui-fileupload-choose" role="button">
            <span class="ui-button-icon-left ui-icon ui-c ui-icon-plusthick"></span>
            <span class="ui-button-text ui-c">Choose</span>
            <input id="lifeProposalEntryForm:proposalAttachment_input" type="file" multiple="multiple" name="lifeProposalEntryForm:proposalAttachment_input">
        </span>
        <button class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-icon-left ui-fileupload-upload" type="button" role="button">
            <span class="ui-button-icon-left ui-icon ui-c ui-icon-arrowreturnthick-1-n"></span>
            <span class="ui-button-text ui-c">Upload</span>
        </button>
        <button class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-icon-left ui-fileupload-cancel" type="button" role="button">
            <span class="ui-button-icon-left ui-icon ui-c ui-icon-cancel"></span>
            <span class="ui-button-text ui-c">Cancel</span>
        </button>
    </div>
......
  • lifeProposalEntryForm:proposalAttachment_inputbyの要素を取得しidます。
  • ファイル (1 つまたは複数のファイル) を put/sendkey します。
  • second buttonの の要素を取得し<div id="lifeProposalEntryForm:proposalAttachment"ます。
  • ボタン要素をクリックします。

JavaでのSeliniumテスト

webElement = driver.findElement(By.id("lifeProposalEntryForm:proposalAttachment_input"));
webElement.sendKeys("C:\\temp\\life\\life_1.jpg");
webElement = driver.findElement(By.xpath("//input[@type='file'and @id='lifeProposalEntryForm:proposalAttachment_input']"));
webElement= driver.findElement(By.xpath(".//*[@id='lifeProposalEntryForm:proposalAttachment']/div[1]/button[1]"));
webElement.click();

私が言及したように試してください。それは私にとって仕事です。

于 2014-03-13T08:40:58.143 に答える