View Analyzer Plugin icon---> CAPTURE THE VEW. ACCELQ Jira plugin ( ACCELQ Connect ) CI Test Execution: Jenkins ACCELQ supports the execution of Automation scripts in the CI pipeline on Jenkins using the available Jenkins plugin. Download and install the plugin Jenkins Plugin Navigate to the listing of available plugin versions: https://updates.jenkins.io/download/plugins/accelq-ci-connect/ Click on the latest available ACCELQ plugin release and download. Click on Manage Jenkins -> Manage Plugins -> Advanced -> Upload Plugin Upload the plugin and restart Jenkins. Setting up ACCELQ Automation step Create a new project or select an existing one. Click on Configure -> Post Build Action -> Add Post Build Action -> ACCELQ CONNECT Fill in the form fields with relevant information. Click on the "?" icon beside each field to know more about the expected input and format. Test your connection before ...
package WebdriverStart; import org.openqa.selenium.PageLoadStrategy; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.firefox.FirefoxOptions; import org.openqa.selenium.firefox.FirefoxProfile; import org.openqa.selenium.firefox.internal.ProfilesIni; public class Firefoxprofiler { public static void main(String[] args) { //###################For selenium console data // System.setProperty(FirefoxDriver.SystemProperty.BROWSER_LOGFILE,"null");//no file will be generated at console System.setProperty(FirefoxDriver.SystemProperty.BROWSER_LOGFILE,"G:\\Prac_data\\testlog.txt");//no file will be generated at console // #################binary file(FirefoxOptions class) FirefoxOptions options= new FirefoxOptions(); options.setBinary("path of the firefox exe");//if selenium doesnt find the firefox.exe //##############PageLoadStrategy#################(FirefoxOptions class...
Comments
Post a Comment