Its been a long while since i have been on this platform so here goes. I have just started using pythons webbot library. I think it is a pretty cool library from a developer stand point. It pretty much is way better than most for basic online automation tasks. I have a problem that basically stops me from using it. This is the code i have:
from webbot import Browser
web = Browser()
print(web)
The error message is:
selenium.common.exceptions.SessionNotCreatedException: Message: session not created exception: Missing or invalid capabilities
(Driver info: chromedriver=2.39.562718 (9a2698cba08cf5a471a29d30c8b3e12becabb0e9),platform=Windows NT 10.0.19044 x86_64)
Now i have seen that there have been several answers to this type of question as i have copied and pasted the error message into a search engine and up popped a few answers some didn't go into enough detail and some just didn't plain work. I can use Selenium for what i need to do, but it seems to me that the webbot library is more streamlined and easier to use. Does anyone know how to fix this, and if the webbot dev team will be adding any other browsers to the webbot library. Thank you for your time and effort to all who answer.