

Whenever the automation script is run for login to applic… Problem :- Trying to automate this application in Katalon. To avoid OTP, we need to login to sales force application from the browser of the same system without clearing the cache. One the same computer if browser cache is cleared We have a salesforce application which will send otp to mobile on the below cases tProperty("", driverPath) Ĭapabilities.Run Automation in the Active browser Katalon StudioĬan anyone know How to run the automation acript in the active browser? String driverPath = "D:\\Guru99Demo\\GeckoDriver.exe" tLegacy(true) Code for launching firefox using Gecko driver package Taking advantage of this, marionette driver can be called using Firefox Options as below FirefoxOptions options = new FirefoxOptions() Mozilla Firefox version 47+ has marionette driver as a legacy system. If gecko driver is initialized using the above method, code for desired capabilities is not required. Gecko driver can also be initialized using marionette property as below tProperty("","D:\\Downloads\\GeckoDriver.exe") Here is the complete code tProperty("", driverPath) ĭesiredCapabilities capabilities = DesiredCapabilities.firefox() DesiredCapabilities capabilities = DesiredCapabilities.firefox() ĬtCapability("marionette",true) Below is the code to set gecko driver using DesiredCapabilities class. Syntax: tProperty("","Path to geckdriver.exe file") Įxample: tProperty("","D:\\Downloads\\GeckoDriver.exe") ĭesired Capabilities help Selenium to understand the browser name, version and operating system to execute the automated tests. Using DesiredCapabilities:įirst, set the system property for Gecko Driver. There are three different ways to initialize GeckoDriver. Location will be used later to instantiate the driver. Note the location where you extracted the driver.
