|
| 1 | +# Licensed to the Software Freedom Conservancy (SFC) under one |
| 2 | +# or more contributor license agreements. See the NOTICE file |
| 3 | +# distributed with this work for additional information |
| 4 | +# regarding copyright ownership. The SFC licenses this file |
| 5 | +# to you under the Apache License, Version 2.0 (the |
| 6 | +# "License"); you may not use this file except in compliance |
| 7 | +# with the License. You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, |
| 12 | +# software distributed under the License is distributed on an |
| 13 | +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 14 | +# KIND, either express or implied. See the License for the |
| 15 | +# specific language governing permissions and limitations |
| 16 | +# under the License. |
| 17 | + |
| 18 | +from typing import Optional |
| 19 | + |
| 20 | +from appium.options.common.supports_capabilities import SupportsCapabilities |
| 21 | + |
| 22 | +MARIONETTE_PORT = 'marionettePort' |
| 23 | + |
| 24 | + |
| 25 | +class MarionettePortOption(SupportsCapabilities): |
| 26 | + @property |
| 27 | + def marionette_port(self) -> Optional[int]: |
| 28 | + """ |
| 29 | + The number of the port for the Marionette server to listen on. |
| 30 | + """ |
| 31 | + return self.get_capability(MARIONETTE_PORT) |
| 32 | + |
| 33 | + @marionette_port.setter |
| 34 | + def marionette_port(self, value: int) -> None: |
| 35 | + """ |
| 36 | + Selects the port for Geckodriver’s connection to the Marionette |
| 37 | + remote protocol. The existing Firefox instance must have Marionette |
| 38 | + enabled. To enable the remote protocol in Firefox, you can pass the |
| 39 | + -marionette flag. Unless the marionette.port preference has been |
| 40 | + user-set, Marionette will listen on port 2828, which is the default |
| 41 | + value for this capability. |
| 42 | + """ |
| 43 | + self.set_capability(MARIONETTE_PORT, value) |
0 commit comments