Can I attach selenium javadocs in eclipse?
I want to attach a java doc file that contains selenium commands & functions so that on hovering them in my code, I can easily learn about & can use them in a better way. I tried with multiple solutions still found such error,
Open Declaration
WebElement org.openqa.selenium.WebDriver.findElement(By arg0)
Note: This element neither has attached source nor attached Javadoc and hence no Javadoc could be found
What you're looking for is a "Selenium plugin" for your IDE. I don't think such a thing exists. All you get is the default "intellisense" documentation. There is no way you can get more than that without a native IDE plugin integration.
The best thing you can do is just reference the official online Selenium javadocs and/or create your own javadoc HTML page for your own Selenium project's classes.