Unable to Import and Use org.openqa

Asked 1 years ago, Updated 1 years ago, 89 views

Unable to import and use org.openqa, the name error is as follows:

import org.openqa


No module named 'org'

- What you tried
·I used python as a dialogue shell and reconfirmed it one by one, but the results were the same
·I looked for a similar case, but I couldn't find a similar case

I would appreciate it if you could let me know.

python google-chrome selenium

2022-09-29 22:11

1 Answers

Do you mean you are trying to use the name space for Java in Python?
What are you referring to and what are you trying to do?

I'll add it.

org.openqa is the namespace for Java bindings.
What you are referring to is a description for Java, not available for Python bindings.
Please refer to the description for Python.

Python bindings utilize the selenium module.
https://pypi.python.org/pypi/selenium
Use the select class in the selenium.webdriver.support.ui module to manipulate the <select> element.
http://selenium-python.readthedocs.io/navigating.html#filling-in-forms


2022-09-29 22:11

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.