代码改变世界

ABAP关键字TYPES和DATA总结

2016-02-29 16:58 by xlmig, 4779 阅读, 0 推荐, 收藏, 编辑
摘要:关健字是语句的第一个词,它决定整个语句的意义,有四种不同类型的关健字 . 1.说明性关健字 TYPES,DATA,TABLES,这些关健字说明定义数据类型或者说明程序可以访问的数据对象 TYPES: 用来定义数据结构类型 。 DATA: 用来定义数据结构对象 。 TABLES: 用来声明Table  阅读全文

GIT 介绍

2016-02-26 17:53 by xlmig, 253 阅读, 0 推荐, 收藏, 编辑
摘要:Git是目前最流行的版本管理系统,学会Git几乎成了开发者的必备技能。 Git有很多优势,其中之一就是远程操作非常简便。本文详细介绍5个Git命令,它们的概念和用法,理解了这些内容,你就会完全掌握Git远程操作。 git clone git remote git fetch git pull git 阅读全文

解决selemium报错 Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure

2016-02-24 11:35 by xlmig, 7171 阅读, 0 推荐, 收藏, 编辑
摘要:关于 Exception in thread "main" org.openqa.selenium.remote.UnreachableBrowserException: Could not start a new session. Possible causes are invalid addre 阅读全文

git 常用命令

2016-02-23 17:28 by xlmig, 204 阅读, 0 推荐, 收藏, 编辑
摘要:日常使用只要记住下图6个命令 Workspace:工作区 Index / Stage:暂存区 Repository:仓库区(或本地仓库) Remote:远程仓库 一、新建代码库 # 在当前目录新建一个Git代码库 $ git init # 新建一个目录,将其初始化为Git代码库 $ git init 阅读全文

selenlium 打开不同位置的firefox的三种方法

2016-02-23 10:58 by xlmig, 223 阅读, 0 推荐, 收藏, 编辑
摘要:1. System.setProperty System.setProperty("webdriver.firefox.bin","D:/Program Files/Mozilla firefox4002/firefox.exe"); WebDriver driver = new FirefoxDr 阅读全文

selenlium 实践 2

2016-02-23 10:22 by xlmig, 187 阅读, 0 推荐, 收藏, 编辑
摘要:FirefoxProfile定制启动firefox 1 package seleniumtraining1; 2 3 import java.io.File; 4 import java.io.IOException; 5 6 import org.openqa.selenium.By; 7 imp 阅读全文

selenlium 实践 1

2016-02-23 10:16 by xlmig, 351 阅读, 0 推荐, 收藏, 编辑
摘要:1 package project2016022201; 2 3 import org.openqa.selenium.By; 4 import org.openqa.selenium.WebDriver; 5 import org.openqa.selenium.WebElement; 6 imp 阅读全文