We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a19922 commit d0070afCopy full SHA for d0070af
py/selenium/webdriver/wpewebkit/options.py
@@ -14,11 +14,10 @@
14
# KIND, either express or implied. See the License for the
15
# specific language governing permissions and limitations
16
# under the License.
17
-import typing
18
19
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
20
from selenium.webdriver.common.options import ArgOptions
21
-
+from typing import Dict
22
23
class Options(ArgOptions):
24
KEY = "wpe:browserOptions"
@@ -60,5 +59,5 @@ def to_capabilities(self):
60
59
return caps
61
62
@property
63
- def default_capabilities(self) -> typing.Dict[str, str]:
+ def default_capabilities(self) -> Dict[str, str]:
64
return DesiredCapabilities.WPEWEBKIT.copy()
0 commit comments