如何使用机器人框架在异步中运行命令

时间:2018-05-31 05:34:07

标签: robotframework

如何使用机器人框架异步执行命令。 下面的示例代码是使用ansible完成的,需要实现使用机器人框架

svg

1 个答案:

答案 0 :(得分:0)

使用我们可以实现的Process库,下面是示例代码:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "YourCellIdentifier", for: indexPath) as! YourCellClass
    cell.backgroundColor = .clear
}