将黄瓜与夜视仪集成

时间:2018-10-01 09:33:17

标签: nightwatch.js cucumberjs

我需要帮助将黄瓜与夜视仪集成在一起。 Iam正在一个已经有人开发脚本的项目中工作。我发现现在很难整合cucmber。有人可以指导吗? 当我运行功能文件时,它说,

return (
  <div>
    {this.props.items
      .map((item: IListItem, i: number): JSX.Element => <ul className="list-group">
        <li className="list-group-item">
          <div className={styles.text}>
            <p>{item.Id}</p>
          </div>
          <DefaultButton onClick={() => this.showModalEvent(item.Id)} text="Open Modal" />
          {this.state.showPopupId === item.Id
            ? <ModalPopUpItem item={item}
              showModalState={this.state.showPopup}
              showModal={this.showModalEvent} /> : null
          }
        </li>
      </ul>)}
  </div>
);

0 个答案:

没有答案