spool d:\eagle2_2014_5_9_init.log; set feedback off; set define off; prompt -----初始化数据 start--- @D :\projects\Eagle_V2\04Code\v2.0\eagle2\resources\database\full\coc\coc-initialize.sql @D :\p...
分类:
数据库 时间:
2014-07-26 15:42:11
阅读次数:
586
元素控件尺寸(pts)Window(含状态栏)320 x 480Status Bar的高度20Navigation Bar的高度44含Prompt的Navigation Bar的高度74Navigation Bar的图标20×20(透明的png)Tool Bar的高度44Tool Bar的图标20×...
分类:
移动开发 时间:
2014-07-25 23:59:36
阅读次数:
597
webdriver中处理原生的js alert confirm 以及prompt是很简单的。具体思路是使用switch_to.alert()方法定位到alert/confirm/prompt。然后使用text /accept/dismiss/send_keys按需进行操做text。返回alert/c...
分类:
其他好文 时间:
2014-07-23 15:46:09
阅读次数:
261
1:html注释:2:支持三元运算符greeting=(visitor=="PRES")?"Dear President ":"Dear ";3:三种消息框警告框:alert("text")确认框:confirm("text")提示框:prompt("noon",12)4:类似python的for ...
分类:
编程语言 时间:
2014-07-16 21:41:54
阅读次数:
196
1,linux操作日志记录,记录从各个ip登陆到系统的账号,指向命令及命令执行时间#!/bin/bashecho "export PROMPT_COMMAND='{ msg=\$(history 1 | { read x y; echo \$y; }); logger -p local5.info ...
分类:
移动开发 时间:
2014-07-14 16:02:05
阅读次数:
269
今天用vmware workstation安装了ubuntu,不记得用户名和密码是什么了,郁闷,还好ubuntu修改密码很简单,方法如下:
进入shell(Drop to root shell prompt)
1. 在ubuntu启动界面长按shift键进入GRUB界面,选择第二项,进入recovery mode
2. 在recovery mode中,选择ro...
分类:
系统相关 时间:
2014-07-12 17:48:52
阅读次数:
329
//Situation System prompts that:"wget: unable to resolve host address".//Analysis Unable to resolve host address means the problem of DNS(Domain Nam.....
分类:
其他好文 时间:
2014-07-11 22:31:13
阅读次数:
187
//SituationSystem prompts"xxx is not in the sudoers file"(xxx equals the user name)while executing command "sudo":sudo-iPassword:xxx isnotinthe sudoer...
分类:
其他好文 时间:
2014-07-11 22:09:28
阅读次数:
216
1 import java.io.File; 2 3 import org.openqa.selenium.Alert; 4 import org.openqa.selenium.By; 5 import org.openqa.selenium.WebDriver; 6 import org.o.....
分类:
其他好文 时间:
2014-07-11 12:20:28
阅读次数:
190
对话框:警告对话框:alert();语法:window.alert(src)或者alert(src);询问回答对话框:confirm();语法:window.confrim(question)或者confrim(question);单击确认,返回true;单击取消,返回false提示对话框:prompt();语法:window.prompt([showtxt],[defaultTxt])或者pro..
分类:
编程语言 时间:
2014-07-08 08:13:28
阅读次数:
306