dsqbh42082 2017-07-21 12:59
浏览 36
已采纳

Mink / behat文件附加

I am using behat/mink/sahi. I am trying to attach file to an input type element using the xpath because i can not locate it with the normal function that behat already has. My full_path is already in the behat.yml file

   /**
     * @When I attach file
     */
    public function iAttachFile()
    {
        $page = $this->getSession()->getPage();
        $element = $page->find('xpath', "//input[@data-field-type='logo']");
        $element->attachFile('full_path');
    }
  • 写回答

1条回答 默认 最新

  • douwei1930 2017-07-21 14:49
    关注

    attachFile doesn't know to get the full_path from behat.yml alone.

    Make sure you have the latest "behat/mink-selenium2-driver" or this PR https://github.com/minkphp/MinkSelenium2Driver/pull/252 to work for remote hosts.

    In my case I have a path under Behat\MinkExtension: the following files_path: %paths.base%/features/bootstrap and after this copy your file in bootstrap

    And for full path I use something like this:

    $path = $this->getMinkParameter('files_path').DIRECTORY_SEPARATOR. $file_name;
    $element->attachFile($path);
    

    As a best practice you should keep your file in the automation project.
    var_dump your path, if is correct it should work when running local, for remote you need that PR to upload file to the selenium instance.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?