在Eclipse IDE中未找到Selenium的源代码

s4n0splo  于 2022-12-23  发布在  Eclipse
关注(0)|答案(1)|浏览(165)

我将Selenium4.7.2JAR添加到Eclipse中的Java项目中
当我开始工作,当我试图查看源文件时,它显示没有附加源文件。
当我在谷歌上搜索的时候,我发现了一个我不满意的解决方案。
在那篇文章中,他们提到我必须从外部位置添加源代码。

rbl8hiat

rbl8hiat1#

您可以使用"附加源"按钮并选择相应的"sources.jar"文件导入源文件。
例如,
For WebDriver.class - click on the 'Attach Source' button > in Source Attachment Configuration window > External location > External File button > <navigate to the path of 'selenium-api-4.7.2-sources.jar' file and select that file, it will be available in the 'selenium-java-4.7.2.zip' file which you downloaded from Selenium.dev website>
我的建议是使用'Maven'项目,所以您不需要手动下载jar文件。

相关问题