How to use createLocalWebDriver method of com.consol.citrus.selenium.endpoint.SeleniumBrowser class

Best Citrus code snippet using com.consol.citrus.selenium.endpoint.SeleniumBrowser.createLocalWebDriver

Source:SeleniumBrowser.java Github

copy

Full Screen

...89 webDriver = getEndpointConfiguration().getWebDriver();90 } else if (StringUtils.hasText(getEndpointConfiguration().getRemoteServerUrl())) {91 webDriver = createRemoteWebDriver(getEndpointConfiguration().getBrowserType(), getEndpointConfiguration().getRemoteServerUrl());92 } else {93 webDriver = createLocalWebDriver(getEndpointConfiguration().getBrowserType());94 }95 if (!CollectionUtils.isEmpty(getEndpointConfiguration().getEventListeners())) {96 EventFiringWebDriver wrapper = new EventFiringWebDriver(webDriver);97 log.info("Add event listeners to web driver: " + getEndpointConfiguration().getEventListeners().size());98 for (WebDriverEventListener listener : getEndpointConfiguration().getEventListeners()) {99 wrapper.register(listener);100 }101 }102 } else {103 log.warn("Browser already started");104 }105 }106 /**107 * Stop the browser when started.108 */109 public void stop() {110 if (isStarted()) {111 log.info("Stopping browser " + webDriver.getCurrentUrl());112 try {113 log.info("Trying to close the browser " + webDriver + " ...");114 webDriver.quit();115 } catch (UnreachableBrowserException e) {116 // It happens for Firefox. It's ok: browser is already closed.117 log.warn("Browser is unreachable", e);118 } catch (WebDriverException e) {119 log.error("Failed to close browser", e);120 }121 webDriver = null;122 } else {123 log.warn("Browser already stopped");124 }125 }126 /**127 * Deploy resource object from resource folder and return path of deployed128 * file129 *130 * @param fileLocation Resource to deploy to temporary storage131 * @return String containing the filename to which the file is uploaded to.132 */133 public String storeFile(String fileLocation) {134 return storeFile(new PathMatchingResourcePatternResolver().getResource(fileLocation));135 }136 /**137 * Deploy resource object from resource folder and return path of deployed138 * file139 *140 * @param file Resource to deploy to temporary storage141 * @return String containing the filename to which the file is uploaded to.142 */143 public String storeFile(Resource file) {144 try {145 File newFile = new File(temporaryStorage.toFile(), file.getFilename());146 log.info("Store file " + file + " to " + newFile);147 FileUtils.copyFile(file.getFile(), newFile);148 return newFile.getCanonicalPath();149 } catch (IOException e) {150 throw new CitrusRuntimeException("Failed to store file: " + file, e);151 }152 }153 /**154 * Retrieve resource object155 *156 * @param filename Resource to retrieve.157 * @return String with the path to the resource.158 */159 public String getStoredFile(String filename) {160 try {161 File stored = new File(temporaryStorage.toFile(), filename);162 if (!stored.exists()) {163 throw new CitrusRuntimeException("Failed to access stored file: " + stored.getCanonicalPath());164 }165 return stored.getCanonicalPath();166 } catch (IOException e) {167 throw new CitrusRuntimeException("Failed to retrieve file: " + filename, e);168 }169 }170 /**171 * Creates local web driver.172 * @param browserType173 * @return174 */175 private WebDriver createLocalWebDriver(String browserType) {176 switch (browserType) {177 case BrowserType.FIREFOX:178 FirefoxProfile firefoxProfile = getEndpointConfiguration().getFirefoxProfile();179 /* set custom download folder */180 firefoxProfile.setPreference("browser.download.dir", temporaryStorage.toFile().getAbsolutePath());181 DesiredCapabilities defaults = DesiredCapabilities.firefox();182 defaults.setCapability(FirefoxDriver.PROFILE, firefoxProfile);183 return new FirefoxDriver(defaults);184 case BrowserType.IE:185 return new InternetExplorerDriver();186 case BrowserType.EDGE:187 return new EdgeDriver();188 case BrowserType.SAFARI:189 return new SafariDriver();...

Full Screen

Full Screen

createLocalWebDriver

Using AI Code Generation

copy

Full Screen

1import com.consol.citrus.selenium.endpoint.SeleniumBrowser;2import org.openqa.selenium.chrome.ChromeDriver;3import org.openqa.selenium.chrome.ChromeOptions;4import org.openqa.selenium.remote.RemoteWebDriver;5public class ChromeDriverFactory implements SeleniumBrowser.DriverFactory {6 public RemoteWebDriver createLocalWebDriver() {7 ChromeOptions options = new ChromeOptions();8 options.addArguments("--headless");9 return new ChromeDriver(options);10 }11}12public void testWithCustomDriverFactory() {13 selenium().browser(Browser.CHROME)14 .driverFactory(new ChromeDriverFactory())15 .start();16 selenium().verifyText("h1", "Welcome to Consol Labs!");17 selenium().verifyText("p", "Consol Labs is the innovation lab of Consol Software GmbH.");18 selenium().stop();19}

Full Screen

Full Screen

createLocalWebDriver

Using AI Code Generation

copy

Full Screen

1import com.consol.citrus.dsl.testng.TestNGCitrusTestDesigner;2public class Test extends TestNGCitrusTestDesigner {3 public void configure() {4 selenium().browser().createLocalWebDriver();5 selenium().browser().verifyTitle("Google");6 }7}8import com.consol.citrus.dsl.junit.JUnit4CitrusTest;9import org.junit.Test;10public class Test extends JUnit4CitrusTest {11 public void test() {12 selenium().browser().createLocalWebDriver();13 selenium().browser().verifyTitle("Google");14 }15}16import com.consol.citrus.dsl.testng.TestNGCitrusTestDesigner;17public class Test extends TestNGCitrusTestDesigner {18 public void configure() {

Full Screen

Full Screen

createLocalWebDriver

Using AI Code Generation

copy

Full Screen

1import com.consol.citrus.selenium.endpoint.SeleniumBrowser;2SeleniumBrowser browser = new SeleniumBrowser();3browser.setBrowser("chrome");4browser.setDriverPath("/Users/someone/Downloads/chromedriver");5browser.createLocalWebDriver();6import com.consol.citrus.selenium.endpoint.SeleniumBrowser;7SeleniumBrowser browser = new SeleniumBrowser();8browser.setBrowser("chrome");9browser.setDriverPath("/Users/someone/Downloads/chromedriver");10browser.createRemoteWebDriver();11import com.consol.citrus.selenium.endpoint.SeleniumBrowser;12SeleniumBrowser browser = new SeleniumBrowser();13browser.setBrowser("chrome");14browser.setDriverPath("/Users/someone/Downloads/chromedriver");15browser.createWebDriver();16import com.consol.citrus.selenium.endpoint.SeleniumBrowser;17SeleniumBrowser browser = new SeleniumBrowser();18browser.setBrowser("chrome");19browser.setDriverPath("/Users/someone/Downloads/chromedriver");20browser.createWebDriver();21import com.consol.citrus.selenium.endpoint.SeleniumBrowser;22SeleniumBrowser browser = new SeleniumBrowser();23browser.setBrowser("chrome");24browser.setDriverPath("/Users/someone/Downloads/chromedriver");25browser.createWebDriver();26import com.consol.citrus.selenium.endpoint.SeleniumBrowser;27SeleniumBrowser browser = new SeleniumBrowser();28browser.setBrowser("chrome");

Full Screen

Full Screen

createLocalWebDriver

Using AI Code Generation

copy

Full Screen

1seleniumBrowser = new SeleniumBrowser()2seleniumBrowser.setBrowser("chrome")3seleniumBrowser.setBrowserVersion("80")4seleniumBrowser.setPlatform("Windows 10")5seleniumBrowser.setCapabilities(capabilities)6seleniumBrowser.setWebDriver(createLocalWebDriver(seleniumBrowser))7seleniumBrowser.start()8type(seleniumBrowser).into("input[name='q']").text("citrus")9click(seleniumBrowser).element("input[name='btnK']")10waitFor(seleniumBrowser).element("div#search").visible()11seleniumBrowser.stop()12seleniumBrowser = new SeleniumBrowser()13seleniumBrowser.setBrowser("chrome")14seleniumBrowser.setBrowserVersion("80")15seleniumBrowser.setPlatform("Windows 10")16seleniumBrowser.setCapabilities(capabilities)17seleniumBrowser.setWebDriver(createRemoteWebDriver(seleniumBrowser))18seleniumBrowser.start()

Full Screen

Full Screen

createLocalWebDriver

Using AI Code Generation

copy

Full Screen

1package com.consol.citrus.samples.selenium;2import com.consol.citrus.annotations.CitrusTest;3import com.consol.citrus.testng.CitrusParameters;4import com.consol.citrus.testng.TestNGCitrusSupport;5import org.openqa.selenium.WebDriver;6import org.springframework.beans.factory.annotation.Autowired;7import org.testng.annotations.Test;8public class SeleniumJavaIT extends TestNGCitrusSupport {9 private SeleniumBrowser seleniumBrowser;10 @CitrusParameters("browser")11 public void openWebPage(String browser) {12 WebDriver driver = seleniumBrowser.createLocalWebDriver(browser);13 echo("Open web page '${url}' in browser: ${browser}");14 driver.get("${url}");15 }16}

Full Screen

Full Screen

createLocalWebDriver

Using AI Code Generation

copy

Full Screen

1SeleniumBrowser browser = new SeleniumBrowser();2browser.setBrowserName("chrome");3browser.setBrowserVersion("latest");4browser.setPlatform("WINDOWS");5WebDriver driver = browser.createLocalWebDriver();6SeleniumAction seleniumAction = new SeleniumAction();7seleniumAction.setWebDriver(driver);8seleniumAction.close();9seleniumAction.quit();10SeleniumBrowser browser = new SeleniumBrowser();11browser.setBrowserName("chrome");12browser.setBrowserVersion("latest");13browser.setPlatform("WINDOWS");14WebDriver driver = browser.createLocalWebDriver();15SeleniumAction seleniumAction = new SeleniumAction();16seleniumAction.setWebDriver(driver);17seleniumAction.close();18seleniumAction.quit();19SeleniumBrowser browser = new SeleniumBrowser();20browser.setBrowserName("chrome");21browser.setBrowserVersion("latest");22browser.setPlatform("WINDOWS");23WebDriver driver = browser.createLocalWebDriver();24SeleniumAction seleniumAction = new SeleniumAction();25seleniumAction.setWebDriver(driver);26seleniumAction.close();27seleniumAction.quit();28SeleniumBrowser browser = new SeleniumBrowser();29browser.setBrowserName("chrome");30browser.setBrowserVersion("latest");31browser.setPlatform("WINDOWS");32WebDriver driver = browser.createLocalWebDriver();33SeleniumAction seleniumAction = new SeleniumAction();34seleniumAction.setWebDriver(driver);35seleniumAction.close();36seleniumAction.quit();37SeleniumBrowser browser = new SeleniumBrowser();38browser.setBrowserName("chrome");39browser.setBrowserVersion("latest");40browser.setPlatform("

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Citrus automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful