2016-09-15 6 views
3

私はロボットテストを実行するgradleタスクを設定しようとしています。 RobotはPythonライブラリを使ってSeleniumと対話し、ブラウザからWebページをテストします。しかし残念ながら、https://github.com/robotframework/Selenium2Libraryをインストールする唯一の方法はpip経由です - pip install robotframework-selenium2libraryです。 Gradleに自分のタスクでこのコマンドを実行させる方法はありますか?ここで Maven Centralにないライブラリ用にpython pip installを使用するためのgradleテストタスクを得るにはどうすればよいですか?

は、私が持っているものです。

build.gradle:

configurations { 
    //... 
    acceptanceTestRuntime {extendsFrom testCompile, runtime} 
} 
dependencies { 
    //... 
    acceptanceTestRuntime group: 'org.robotframework', name: 'robotframework', version: '2.8.7' 
    //The following doesn't work, apparently this library isn't on maven... 
    //acceptanceTestRuntime group: 'org.robotframework', name: 'Selenium2Library', version: '1.+' 
} 
sourceSets { 
    //... 
    acceptanceTest { 
     runtimeClasspath = sourceSets.test.output + configurations.acceptanceTestRuntime 
    } 
} 
task acceptanceTest(type: JavaExec) { 
    classpath = sourceSets.acceptanceTest.runtimeClasspath 
    main = 'org.robotframework.RobotFramework' 
    args '--variable', 'BROWSER:gc' 
    args '--outputdir', 'target' 
    args 'src/testAcceptance' 
} 

マイロボットのリソースファイル - login.resource.robot:

*** Settings *** 
Documentation A resource file for my example login page test. 
Library   Selenium2Library 

*** Variables *** 
${SERVER}   localhost:8080 
(etc.) 

*** Keywords *** 
Open Browser to Login Page 
    Open Browser ${LOGIN_URL} ${BROWSER} 
    Maximize Browser Window 
    Set Selenium Speed ${DELAY} 
    Login Page Should Be Open 

Login Page Should Be Open 
    Location Should Be  ${LOGIN_URL} 

そして私は、このタスクを実行すると、私のロボットテストは実行されますが、失敗します。 robotframework-selenium2Libraryで定義されている特定のキーワードは認識されないため、「ブラウザを開く」などの例外がスローされます。

このタスクのためにこのセレンライブラリをインポートするにはどうすればよいですか? Pythonプラグインを使用してpipをインストールして呼び出すことはできますか?

答えて

0

私は、ロボットテストを開始したPythonスクリプトを実行するためにgradle Execタスクを使用しなければなりませんでした。だから、このように見えた:

build.gradle

task acceptanceTest(type: Exec) { 
    workingDir 'src/testAcceptance' 
    commandLine 'python', 'run.py' 
} 

のsrc/testAcceptance/run.py

import os 
import robot 
import setup 
#Which runs setup.py 

os.environ['ROBOT_OPTIONS'] = '--variable BROWSER.gc --outputdir results' 
robot.run('.') 

のsrc/testAcceptance/setup.py

import os 
import sys 
import pip 
import re 

pip.main(['install', 'robotframework==3.0']) 
pip.main(['install', 'robotframework-selenium2library==1.8.0']) 
# Checksums can be looked up by chromedriver version here - http://chromedriver.storage.googleapis.com/index.html 
pip.main(['install', '--upgrade', 'chromedriver_installer', 
    '--install-option=--chromedriver-version=2.24', 
    '--install-option=--chromedriver-checksums=1a46c83926f891d502427df10b4646b9,d117b66fac514344eaf80691ae9a4687,' + 
    'c56e41bdc769ad2c31225b8495fc1a93,8e6b6d358f1b919a0d1369f90d61e1a4']) 

#Add the Scripts dir to the path, since that's where the chromedriver is installed 
scriptsDir = re.sub('[A-Za-z0-9\\.]+$', '', sys.executable) + 'Scripts' 
os.environ['PATH'] += os.pathsep + scriptsDir 
関連する問題