Skip to content

Commit 9d6131f

Browse files
bhecquetdiemol
andauthored
Remove 'browserName' capability from stereotype when using RelaySession (#14247)
* Remove 'browserName' capability from stereotype. We expect it to be present is SessionRequest * Only remove 'browserName' when 'appium:app' is present * Formatting file --------- Co-authored-by: Diego Molina <[email protected]> Co-authored-by: Diego Molina <[email protected]>
1 parent 82715b9 commit 9d6131f

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

java/src/org/openqa/selenium/grid/node/relay/RelaySessionFactory.java

+12-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
import java.util.logging.Logger;
4141
import org.openqa.selenium.Capabilities;
4242
import org.openqa.selenium.ImmutableCapabilities;
43+
import org.openqa.selenium.MutableCapabilities;
4344
import org.openqa.selenium.SessionNotCreatedException;
4445
import org.openqa.selenium.WebDriverException;
4546
import org.openqa.selenium.grid.data.CreateSessionRequest;
@@ -49,6 +50,7 @@
4950
import org.openqa.selenium.internal.Debug;
5051
import org.openqa.selenium.internal.Either;
5152
import org.openqa.selenium.internal.Require;
53+
import org.openqa.selenium.remote.CapabilityType;
5254
import org.openqa.selenium.remote.Command;
5355
import org.openqa.selenium.remote.Dialect;
5456
import org.openqa.selenium.remote.DriverCommand;
@@ -146,7 +148,16 @@ public Either<WebDriverException, ActiveSession> apply(CreateSessionRequest sess
146148
new SessionNotCreatedException(
147149
"New session request capabilities do not " + "match the stereotype."));
148150
}
149-
capabilities = capabilities.merge(stereotype);
151+
152+
// remove browserName capability if 'appium:app' is present as it breaks appium tests when app
153+
// is provided
154+
// they are mutually exclusive
155+
MutableCapabilities filteredStereotype = new MutableCapabilities(stereotype);
156+
if (capabilities.getCapability("appium:app") != null) {
157+
filteredStereotype.setCapability(CapabilityType.BROWSER_NAME, (String) null);
158+
}
159+
160+
capabilities = capabilities.merge(filteredStereotype);
150161
LOG.info("Starting session for " + capabilities);
151162

152163
try (Span span = tracer.getCurrentContext().createSpan("relay_session_factory.apply")) {

0 commit comments

Comments
 (0)