Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/shaowenchen/docker-robotframework

Robotframework 运行的 Docker 镜像环境
https://github.com/shaowenchen/docker-robotframework

headless robot-framework test-automation

Last synced: about 2 months ago
JSON representation

Robotframework 运行的 Docker 镜像环境

Awesome Lists containing this project

README

        

## 简介

这是一个 Robotframework 的 Docker 镜像运行环境。

建议:在测试用例所在目录,新建 `start.sh` 脚本文件,用于执行测试。

## 内置的浏览器

- Google Chrome
- Firefox
- Phantomjs

## 本地编译

- 本地编译

如果需要在本地编译,使用命令:

```shell
$ docker-compose build
```

- 本地运行

```shell
$ docker-compose up
```

## 使用线上镜像

```shell
version: '2'

services:

robotframework:
image: shaowenchen/docker-robotframework:latest
volumes:
- ./tests:/data
command: /bin/bash -c '/data/start.sh'
```