How do I pass Chrome options in Laravel ?
Hey Jacqueline,
Add the following snippet in your base test file:
$capabilities = array(
"browserName" => "Chrome",
"browserVersion" => "104.0",
"LT:Options" => array(
"username" => "LT_USERNAME",
"accessKey" => "LT_ACCESS_KEY",
"platformName" => "Windows 10",
"project" => "Untitled",
"selenium_version" => "4.0.0",
"w3c" => true
)
)
Refer to the capability generator for browser version and platform name - Automation Capabilities Generator For Selenium and Appium | LambdaTest