cropse

Circleci範例紀錄 2017- 2-20


這裡記錄使用Django_blog 在github每次push時使用circleci跑一次測試,circleci只使用一個專案不用錢(測試時間還是有限制)
基本上只要用circleci連結到你github的專案,專案有circle.yml就會在每次push時自動跑一次測試

circle.yml

dependencies:
    override:
        - sudo apt-get install python3 build-essential python3-dev python3-setuptools python3-pip -y
        - pyenv global 3.6.0
        - pip3 ...

Tag: CI/CD selenium testcase deploy

View

Selenium 試玩心得 2017- 2-18


簡單紀錄一下有遇到的問題:

遇到這個Error log

Unexpected Exception: Error: cross-process JS call failed.
安裝這個插件

安裝geckodriver

另外需要安裝geckodriver才能從執行,不然會有error
selenium.common.exceptions.WebDriverException: Message: 'geckodriver' executable needs to be in PATH.

https://github.com/mozilla/geckodriver/releases ...

Tag: testcase selenium

View