selenium webdriver 把selenium项目同步

作者: 七月尾巴_葵花 | 来源:发表于2017-04-14 20:17 被阅读18次

    这里主要是想把selenium的整个项目同步到eclipse的经历分享一下。虽然有时候想想没有必要,因为你下载的包里本身就包含了源代码,但是我就是这样做了。
    selenium项目地址: (只读)
    方法一、直接使用TortoiseSVN
    1、安装TortoiseSVN。下载地址:http://tortoisesvn.net/downloads
    2、在eclipse的Workspace目录下直接新建一个文件夹,右击文件夹 -> TortoiseSVN -> Export... ,在打开的弹层"URL of repository:"下面的输入框输入http://selenium.googlecode.com/svn/trunk/,点击OK。
    3、把同步下来文件夹做为一个项目导入eclipse。(File>>Import>>General>>Existing Projects into Workspace 然后选择自己的项目)

    方法二、使用Subclipse
    Subclipse是一个eclipse插件。(包括 Eclipse PDT和 Zend Studio for Eclipse).它能在eclipse里面安装和更新。
    subclipse安装步骤(比较懒,直接复制官网的):
    • Go to Help | Software Updates | Find and Install...
    • Choose Search new features to install, Next.
    • Choose New Remote Site, enter name "Subclipse" and URL "http://subclipse.tigris.org/update_1.8.x".
    • Select the created "Subclipse" site and click Next.
    • Follow the instructions and restart the workbench.

    安装好了之后,重启eclipse,切换eclipse到SVN资源库
    • 在eclipse工具栏,Window | open perspective | Other...
    • 选择 "SVN 资源库研究,OK
    • 在进入"SVN资源库"后,右击—>新建->资源库位置...
    • 在弹出的层中输入 http://selenium.googlecode.com/svn/trunk/,Finish.
    • 这样会在左边的面板出现这个添加的库,直接右击->检出为...
    • 在弹出的框中随便输入项目名,Finish。
    ok了,得到的项目和上图一样。

    PS:有时候导出的项目会有报错,主要是第三方包有更新,看一下Path下的jar文件是不是有missing的情况。

    相关文章

      网友评论

        本文标题:selenium webdriver 把selenium项目同步

        本文链接:https://www.haomeiwen.com/subject/ejbiattx.html