In my code I use the not yet imported class NoSuchElementException. If I select the class and do "import class" or "expand class", I get "The class is not found.".
But VS code proposes a fix (yellow bulb), and if I click on it, it imports the class at the top :
from selenium.common.exceptions import NoSuchElementException
If VS code can find the class, why "import class" does not find it ?
Even with a simple class name like "By", vscode quickly finds the possible classes, and I do "quick fix" :
But I'd like to do something like "import class" or "expand class" myself, instead of using "quick fix".
