登录
首页 » Android » selenium范例

selenium范例

于 2022-01-21 发布 文件大小:5.12 MB
0 175
下载积分: 2 下载次数: 1

代码说明:

基于selenium2入门到精通在源码,不过里头有些代码是有问题的,大家只能拿来借鉴而已咯。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 光照传感器的应用
    主要是光照传感器的简单应用,代码简洁,通俗易懂, 有兴趣的可以下载看看。 还挺好玩的哦。可以根据不同的光照出现不同的值。。
    2022-07-03 01:28:27下载
    积分:1
  • 安卓身份证读取模块
    安卓身份证读取模块
    2020-12-01下载
    积分:1
  • Android自定义dialog实现processDialog“正在加载”Loading
    Android使用Animation实现图片旋转的processDialog——进度条,通过自定义dialog实现,运行时手机屏幕上会显示“正在加载”字样,你可熟悉一下Android Animation类的使用方法。加载动画是使用ImageView显示。
    2023-02-04 03:45:03下载
    积分:1
  • Android SDFileExplorer SD卡文件浏览查看程序
    SDFileExplorer源代码,用于Android SDFileExplorer SD卡文件浏览查看程序,你可发解如何判断是否存在sdcard、获取SDCard路径下的根目录,如何将目录依次读取至listView列表中,获取所有子文件的数组,输出内容到视图中,最终运行效果如图示。
    2022-01-28 18:44:42下载
    积分:1
  • Android 使用Dialog组件制作登陆框特效
    Android 使用Dialog组件制作的登陆框特效,这是一个带动画效果的用户登录界面特效,运行后,登录框由上到下弹跳若干次后,慢慢停下来,用户可输入帐号、密码进行登录,加入动画效果,可让你的APP界面更活跃,有些用户喜欢带动画的窗口。   异常处理部分也简单弄了下:Notice.show(this, "程序出现异常: " + getException(e), Toast.LENGTH_LONG);   这个登录框的弹跳效果,是借鉴了一个弹球游戏中的弹跳模块,因此看上去效果和弹球的弹跳很相似哦。
    2022-03-08 09:03:15下载
    积分:1
  • qiangtandenglu
    《抢滩登陆》属于即时360度全方位射击游戏,相对于同类游戏较为简单,但容量又大于普通的小游戏,玩法非常简单,很容易上手。游戏情节惊心动魄,游戏场景中变化多端的敌军、即时控制的动作都是吸引玩家的亮点。 20世纪60年代,战争的硝烟在整个欧洲大陆上弥漫,盟军在大陆上的作战陷入了胶着状态。为了牵制敌军的行动并最终取得决定性的胜利,玩家的使命就是:尽最大可能消耗敌人的入侵部队,阻止敌人的进攻。面对滩头上潮水一般涌来的敌人,唯一能依靠的就只有身后那门威力无比强大的海防炮台。 android游戏(Landing on a beach belonging to real-time 360-degree shooting game, it has a relatively simple compared to similar games, but the capacity is greater than the ordinary game play is very simple, very easy to use. The game plot thrilling, varied enemy in the game scene, real-time control actions are the highlights to attract players. 1960s, the war on the entire European continent, filled the air, the Allied forces fighting on the mainland into a stalemate. In order to pin down the enemy' s actions and ultimately to achieve a decisive victory, the player' s mission is: to the maximum extent possible consumption of the invading forces of the enemy, to prevent the enemy' s attack. The face of the enemy beachhead came flooding, only able to rely on only behind that door power of powerful coastal defense fort. android game)
    2012-07-08 08:36:56下载
    积分:1
  • com
    SignalA修改后的源码,支持android2.2及以上(SignalA modified source code, support android2.2 and above)
    2013-11-04 13:08:31下载
    积分:1
  • IIC-OLED显示屏新资料(SSD1306)
    STM32F103C8T6的硬件I2CPB6 -- SCL; PB7 -- SDA
    2020-12-01下载
    积分:1
  • mp3Player
    一款自已写的MP3播放器,通过他你可以学到android 媒体播放、多线程方面的知识(A from already write MP3 player, through him you can learn android media player, multithreading aspects of knowledge)
    2012-03-30 15:51:08下载
    积分:1
  • Android 自定义弹出式菜单栏源码下载
    Android Custom Menu 弹出窗口式自定义菜单栏的实例源码,运行后通过轻触手机的菜单键,来唤出菜单窗口,再次点击菜单键,自定义弹出对话框则隐藏,菜单是布局在对话框窗口中的,在本例中,自定义弹出窗口继承PopupWindow,并封装有封装GridView组件和View 组件,GridView 为每个Item设置监听事件方法,部分代码先睹为快:   public CustomMenu(Activity activity, List menus) {   super(activity);   //View 样式文件R.layout.menu   view = activity.getLayoutInflater().inflate(R.layout.menu, null);   //实例化GridView组件   gvMenu = (GridView)view.findViewById(R.id.gv_menu);   //相关参数设置   this.setContentView(view);   this.setWidth(LayoutParams.FILL_PARENT);   this.setHeight(LayoutParams.WRAP_CONTENT);   //图片获取   Drawable drawable = activity.getResources().getDrawable(R.drawable.selector_focused_shape);   //相关特效设置   this.setBackgroundDrawable(drawable);   this.setAnimationStyle(R.style.PopupAnimation);   this.setFocusable(true);   //设置相关OnKeyListener事件   gvMenu.setOnKeyListener(new OnKeyListener() {   @Override   public boolean onKey(View v, int keyCode, KeyEvent event) {   if ((keyCode == KeyEvent.KEYCODE_MENU)&&(isShowing())) {    dismiss();//关闭P
    2022-10-12 07:55:03下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载