package com.note.testcases;
/**
*
* The MIT License (MIT)
*
* Copyright (c) 2016 Alejandro Gómez Morón
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/ import java.io.File;
import java.net.URL;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.TimeUnit; import org.apache.commons.lang3.StringUtils;
import org.apache.log4j.Logger;
import org.openqa.selenium.By;
import org.openqa.selenium.Capabilities;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.Platform;
import org.openqa.selenium.ScreenOrientation;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebDriver.TargetLocator;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.html5.Location;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.remote.ExecuteMethod;
import org.openqa.selenium.remote.RemoteWebDriver; import com.google.gson.JsonObject; import io.appium.java_client.AppiumDriver;
import io.appium.java_client.MobileElement;
import io.appium.java_client.MultiTouchAction;
import io.appium.java_client.TouchAction;
import io.appium.java_client.android.AndroidDriver;
import io.appium.java_client.ios.IOSDriver;
import io.appium.java_client.remote.MobileCapabilityType; /**
* Appium handler driver to work with any appium implementation iOS/Android and working with
* the app independent of the app (native or hybrid).
*
* @author Alejandro Gomez <agommor@gmail.com>
* @author Ivan Gomez de Leon <igomez@emergya.com>
*
*/
public class DevTest { /**
* Log instance.
*/
private final static Logger LOGGER = Logger.getLogger(DevTest.class); /**
* Key to be used in the {@link DesiredCapabilities} checking.
*/
private static String PLATFORM_TYPE_KEY = "platformName"; /**
* Key to be used in the {@link DesiredCapabilities} checking.
*/
private static String APP_KEY = "app"; /**
* Key to be used in the {@link DesiredCapabilities} checking.
*/
private static String APP_HYBRID = "appHybrid"; /**
* Parameter to have always the main window.
*/
private String mainWindow; /**
* Involved instance (decorator pattern).
*/
private AppiumDriver<MobileElement> driver; /**
* Flag to know if we're testing an hybrid app.
*/
private boolean isAnHybridApp; /**
* Builder method to create {@link DevTest} instances.
* @param remoteAddress to be used.
* @param desiredCapabilities to be used.
* @return an {@link DevTest} instance with the custom implementation.
*/
public static DevTest buildInstance(URL remoteAddress, DesiredCapabilities desiredCapabilities) {
DevTest instance = null; // getting app path (if it's exists)
Object appCapability = desiredCapabilities.getCapability(APP_KEY);
if (appCapability != null && appCapability instanceof String) {
String appPath = (String) appCapability;
File file = new File(appPath);
if (file.exists()) {
desiredCapabilities.setCapability(APP_KEY, file.getAbsolutePath());
} else {
LOGGER.error("The app was defined but it cannot be found in " + appPath);
}
} AppiumDriver<MobileElement> driver = null; // building the instance
if (isIOS(desiredCapabilities)) {
driver = new IOSDriver<MobileElement>(remoteAddress, desiredCapabilities);
} else if (isAndroid(desiredCapabilities)) {
driver = new AndroidDriver<MobileElement>(remoteAddress, desiredCapabilities);
} else {
// TODO: work on it. Nowadays just iOS and android are supported by this handler.
driver = new AndroidDriver<MobileElement>(remoteAddress, desiredCapabilities);
} // implicit wait for slow devices
driver.manage().timeouts().implicitlyWait(35, TimeUnit.SECONDS);
Boolean isHybrid = false;
Object appHybrid = desiredCapabilities.getCapability(APP_HYBRID);
desiredCapabilities.setCapability(MobileCapabilityType.TAKES_SCREENSHOT, "true");
if (appHybrid != null && appHybrid instanceof Boolean) {
isHybrid = (Boolean) appHybrid;
if (isHybrid) {
// if the app is hybrid, we have to wait until the WEBVIEW context handler exists
driver = switchToWebViewContext(driver);
}
}
// now the driver is configured, we create the wrapper
instance = new DevTest(driver, isHybrid);
return instance;
} /**
* This method switches to webview context (for hybrid apps).
* @param driver to be switched to.
* @param
* @return modified driver instance.
*/
private static AppiumDriver<MobileElement> switchToWebViewContext(AppiumDriver<MobileElement> driver) {
long start = new Date().getTime();
long end = new Date().getTime();
long limit = 15; // waiting no more than 15 seconds to switch to a WEBVIEW context
boolean switched = false;
int maxRetries = 5;
// for HYBRID APPS, switching the context
do {
sleepFor(1);
Set<String> contextHandles = driver.getContextHandles();
for (String context : contextHandles) {
if (context.contains("WEBVIEW")) {
// the context change needs some extra time
int retries = 0;
do {
sleepFor(5);
try {
driver.context(context);
} catch (Exception ex) {
LOGGER.warn("An error occurred switching the context. Trying again...");
}
retries++;
} while (!driver.getContext().contains("WEBVIEW") && retries < maxRetries);
switched = true;
}
}
end = new Date().getTime();
} while (!switched && (start + (limit * 1000)) > end); if (!switched) {
LOGGER.error("After waiting for " + limit
+ " seconds, the driver couldn't switched to the WEBVIEW context, so the test of the hybrid application will failed!");
}
return driver;
} /**
* Method to know if the driver is ready to test hybrid / native apps.
* @return true if the driver is well configured or false otherwise.
*/
public boolean isDriverReadyToTest() {
boolean ready = false;
if (this.driver != null) {
if (this.isAnHybridApp) {
if (this.getContext().contains("WEBVIEW")) {
ready = true;
}
} else {
if (!this.getContext().contains("WEBVIEW")) {
ready = true;
}
}
}
return ready;
} /**
* Private constructor to avoid instances creation without using the buildInstance method.
* @param driver an {@link AppiumDriver} instance.
* @param isHybrid flag to know if it's an hybrid app.
*/
private DevTest(AppiumDriver<MobileElement> driver, Boolean isHybridApp) {
this.driver = driver;
this.isAnHybridApp = isHybridApp;
this.mainWindow = this.driver.getWindowHandle();
} /**
* It switches to the main window if it's an hybrid app.
*/
public void switchToMainWindow() {
if (this.isAnHybridApp && StringUtils.isNotBlank(this.mainWindow)
&& !this.driver.getWindowHandle().equals(this.mainWindow)) {
this.driver.switchTo().window(this.mainWindow);
}
} /**
* It checks if it's an iOS platform.
* @param desiredCapabilities to check if the SO is iOS.
* @return true if it's an iOS testing.
*/
private static boolean isIOS(Capabilities desiredCapabilities) {
return is(desiredCapabilities, "ios");
} /**
* It checks if it's an Android platform.
* @param desiredCapabilities to check if the SO is iOS.
* @return true if it's an iOS testing.
*/
private static boolean isAndroid(Capabilities desiredCapabilities) {
return is(desiredCapabilities, Platform.ANDROID.name());
} /**
* It checks if it's an iOS platform.
* @param desiredCapabilities to check if the SO is iOS.
* @param type to check.
* @return true if it's an iOS testing.
*/
private static boolean is(Capabilities desiredCapabilities, String type) {
boolean is = false;
if (desiredCapabilities != null) {
Object capability = desiredCapabilities.getCapability(PLATFORM_TYPE_KEY);
if (capability != null && capability instanceof String) {
if (type != null && type.equalsIgnoreCase(((String) capability))) {
is = true;
}
}
}
return is;
} /**
* This method waits for the {@link MobileElement} described by the {@By} selector with a timeout of seconds.
* @param selector to get the element.
* @param seconds to wait for (timeout).
* @param message to send to the log if something happens.
*/
public void waitFor(By selector, long seconds, String message) {
LOGGER.info("Waiting for " + selector.toString());
long start = new Date().getTime();
long end = start + (seconds * 1000);
long now = new Date().getTime();
MobileElement element = null;
do {
element = this.findElement(selector);
now = new Date().getTime();
} while (element == null && now <= end); if (element == null) {
if (message != null && "".equals(message.trim())) {
LOGGER.error("After waiting " + seconds + " seconds for the element " + selector.toString()
+ ", the element is missing!. Custom message: " + message);
} else {
LOGGER.error("After waiting " + seconds + " seconds for the element " + selector.toString()
+ ", the element is missing!");
}
}
} /**
* This method waits for the {@link MobileElement} described by the {@By} selector with a timeout of seconds.
* @param selector to get the element.
* @param seconds to wait for (timeout).
*/
public void waitFor(By selector, long seconds) {
this.waitFor(selector, seconds, null);
} /**
* This method waits for the {@link MobileElement} until it's visible described by the {@By} selector with a timeout of seconds.
* @param selector to get the element.
* @param seconds to wait for (timeout).
* @param message to send to the log if something happens.
*/
public void waitUntilVisible(By selector, long seconds, String message) {
LOGGER.info("Waiting for " + selector.toString());
this.waitFor(selector, seconds, message);
MobileElement element = this.findElement(selector);
if (element != null && !element.isDisplayed()) {
LOGGER.error("After waiting " + seconds + " seconds for the element " + selector.toString()
+ " exists in the DOM but is not displayed.");
}
} /**
* It sleeps the driver for n seconds.
* @param seconds to be slept.
*/
public void wait(int seconds) {
long start = new Date().getTime();
try {
driver.wait(seconds * 1000);
} catch (InterruptedException e) {
long end = new Date().getTime();
do {
end = new Date().getTime();
} while ((start + (seconds * 1000)) > end);
}
} /**
* It sleeps the process for n seconds.
* @param seconds to be slept.
*/
public void sleep(long seconds) {
sleepFor(seconds);
} /**
* It sleeps the process for n seconds.
* @param seconds to be slept.
*/
public static void sleepFor(long seconds) {
long start = new Date().getTime();
try {
Thread.sleep(seconds * 1000);
} catch (InterruptedException e) {
long end = new Date().getTime();
do {
end = new Date().getTime();
} while ((start + (seconds * 1000)) > end);
}
} /**
* @see {@link AppiumDriver#findElements(By)}.
*/
public List<MobileElement> findElements(By by) {
List<MobileElement> elements = null;
try {
elements = driver.findElements(by);
} catch (Exception ex) {
elements = new ArrayList<MobileElement>();
}
return elements;
} /**
* @see {@link AppiumDriver#findElementsById(String)}.
*/
public List<MobileElement> findElementsById(String id) {
List<MobileElement> elements = null;
try {
elements = driver.findElementsById(id);
} catch (Exception ex) {
elements = new ArrayList<MobileElement>();
}
return elements;
} /**
* @see {@link AppiumDriver#findElementsByLinkText(String)}.
*/
public List<MobileElement> findElementsByLinkText(String using) {
List<MobileElement> elements = null;
try {
elements = driver.findElementsByLinkText(using);
} catch (Exception ex) {
elements = new ArrayList<MobileElement>();
}
return elements;
} /**
* @see {@link AppiumDriver#findElementsByPartialLinkText(String)}.
*/
public List<MobileElement> findElementsByPartialLinkText(String using) {
List<MobileElement> elements = null;
try {
elements = driver.findElementsByPartialLinkText(using);
} catch (Exception ex) {
elements = new ArrayList<MobileElement>();
}
return elements;
} /**
* @see {@link AppiumDriver#findElementsByTagName(String)}.
*/
public List<MobileElement> findElementsByTagName(String using) {
List<MobileElement> elements = null;
try {
elements = driver.findElementsByTagName(using);
} catch (Exception ex) {
elements = new ArrayList<MobileElement>();
}
return elements;
} /**
* @see {@link AppiumDriver#findElementsByName(String)}.
*/
public List<MobileElement> findElementsByName(String using) {
List<MobileElement> elements = null;
try {
elements = driver.findElementsByName(using);
} catch (Exception ex) {
elements = new ArrayList<MobileElement>();
}
return elements;
} /**
* @see {@link AppiumDriver#findElementsByClassName(String)}.
*/
public List<MobileElement> findElementsByClassName(String using) {
List<MobileElement> elements = null;
try {
elements = driver.findElementsByClassName(using);
} catch (Exception ex) {
elements = new ArrayList<MobileElement>();
}
return elements;
} /**
* @see {@link AppiumDriver#findElementsByCssSelector(String)}.
*/
public List<MobileElement> findElementsByCssSelector(String using) {
List<MobileElement> elements = null;
try {
elements = driver.findElementsByCssSelector(using);
} catch (Exception ex) {
elements = new ArrayList<MobileElement>();
}
return elements;
} /**
* @see {@link AppiumDriver#findElementsByXPath(String)}.
*/
public List<MobileElement> findElementsByXPath(String using) {
List<MobileElement> elements = null;
try {
elements = driver.findElementsByXPath(using);
} catch (Exception ex) {
elements = new ArrayList<MobileElement>();
}
return elements;
} /**
* @see {@link AppiumDriver#findElementsByAccessibilityId(String)}.
*/
public List<MobileElement> findElementsByAccessibilityId(String using) {
List<MobileElement> elements = null;
try {
elements = driver.findElementsByAccessibilityId(using);
} catch (Exception ex) {
elements = new ArrayList<MobileElement>();
}
return elements;
} /**
* @see {@link DefaultGenericMobileDriver#findElement(By)}.
*/
public MobileElement findElement(By by) {
MobileElement element;
try {
element = driver.findElement(by);
} catch (Exception ex) {
element = null;
}
return element;
} /**
* @see {@link DefaultGenericMobileDriver#findElementById(String)}.
*/
public MobileElement findElementById(String id) {
MobileElement element;
try {
element = driver.findElementById(id);
} catch (Exception ex) {
element = null;
}
return element;
} /**
* @see {@link DefaultGenericMobileDriver#findElementByLinkText(String)}.
*/
public MobileElement findElementByLinkText(String using) {
MobileElement element;
try {
element = driver.findElementByLinkText(using);
} catch (Exception ex) {
element = null;
}
return element;
} /**
* @see {@link DefaultGenericMobileDriver#findElementByPartialLinkText(String)}.
*/
public MobileElement findElementByPartialLinkText(String using) {
MobileElement element;
try {
element = driver.findElementByPartialLinkText(using);
} catch (Exception ex) {
element = null;
}
return element;
} /**
* @see {@link DefaultGenericMobileDriver#findElementByTagName(String)}.
*/
public MobileElement findElementByTagName(String using) {
MobileElement element;
try {
element = driver.findElementByTagName(using);
} catch (Exception ex) {
element = null;
}
return element;
} /**
* @see {@link DefaultGenericMobileDriver#findElementByName(String)}.
*/
public MobileElement findElementByName(String using) {
MobileElement element;
try {
element = driver.findElementByName(using);
} catch (Exception ex) {
element = null;
}
return element;
} /**
* @see {@link AppiumDriver#getExecuteMethod()}.
*/
public ExecuteMethod getExecuteMethod() {
return driver.getExecuteMethod();
} /**
* @see {@link AppiumDriver#resetApp()}.
*/
public void resetApp() {
driver.resetApp();
} /**
* @see {@link AppiumDriver#isAppInstalled(String)}.
*/
public boolean isAppInstalled(String bundleId) {
return driver.isAppInstalled(bundleId);
} /**
* @see {@link AppiumDriver#installApp(String)}.
*/
public void installApp(String appPath) {
driver.installApp(appPath);
} /**
* @see {@link AppiumDriver#removeApp(String)}.
*/
public void removeApp(String bundleId) {
driver.removeApp(bundleId);
} /**
* @see {@link AppiumDriver#launchApp()}.
*/
public void launchApp() {
driver.launchApp();
} /**
* @see {@link AppiumDriver#closeApp()}.
*/
public void closeApp() {
driver.closeApp();
} /**
* @see {@link AppiumDriver#runAppInBackground(int)}.
*/
public void runAppInBackground(int seconds) {
driver.runAppInBackground(seconds);
} /**
* @see {@link AppiumDriver#hideKeyboard()}.
*/
public void hideKeyboard() {
driver.hideKeyboard();
} /**
* @see {@link AppiumDriver#pullFile(String)}.
*/
public byte[] pullFile(String remotePath) {
return driver.pullFile(remotePath);
} /**
* @see {@link AppiumDriver#pullFolder(String)}.
*/
public byte[] pullFolder(String remotePath) {
return driver.pullFolder(remotePath);
} /**
* @see {@link AppiumDriver#performTouchAction(TouchAction)}.
*/
public TouchAction performTouchAction(TouchAction touchAction) {
return driver.performTouchAction(touchAction);
} /**
* @see {@link AppiumDriver#performMultiTouchAction(MultiTouchAction)}.
*/
public void performMultiTouchAction(MultiTouchAction multiAction) {
driver.performMultiTouchAction(multiAction);
} /**
* This method is the same than {@link DevTest#tap(int, WebElement, int)} but using a {@link MobileElement} object.
*/
public void tap(int fingers, MobileElement element, int duration) {
int xPosition = element.getLocation().getX() + element.getSize().getWidth() / 2;
int yPosition = element.getLocation().getY() + element.getSize().getHeight() / 2;
this.tap(fingers, xPosition, yPosition, duration);
} /**
* @see {@link AppiumDriver#tap(int, WebElement, int)}.
*/
public void tap(int fingers, WebElement element, int duration) {
driver.tap(fingers, element, duration);
} /**
* @see {@link AppiumDriver#tap(int, int, int, int)}.
*/
public void tap(int fingers, int x, int y, int duration) {
driver.tap(fingers, x, y, duration);
} /**
* @see {@link AppiumDriver#swipe(int, int, int, int, int)}.
*/
public void swipe(int startx, int starty, int endx, int endy, int duration) {
driver.swipe(startx, starty, endx, endy, duration);
} /**
* @see {@link AppiumDriver#pinch(WebElement)}.
*/
public void pinch(WebElement el) {
driver.pinch(el);
} /**
* @see {@link AppiumDriver#pinch(int, int)}.
*/
public void pinch(int x, int y) {
driver.pinch(x, y);
} /**
* @see {@link AppiumDriver#zoom(WebElement)}.
*/
public void zoom(WebElement el) {
driver.zoom(el);
} /**
* @see {@link AppiumDriver#zoom(int, int)}.
*/
public void zoom(int x, int y) {
driver.zoom(x, y);
} /**
* @see {@link AppiumDriver#getSettings()}.
*/
public JsonObject getSettings() {
return driver.getSettings();
} /**
* @see {@link AppiumDriver#context(String)}.
*/
public WebDriver context(String name) {
return driver.context(name);
} /**
* @see {@link AppiumDriver#getContextHandles()}.
*/
public Set<String> getContextHandles() {
return driver.getContextHandles();
} /**
* @see {@link AppiumDriver#getContext()}.
*/
public String getContext() {
return driver.getContext();
} /**
* @see {@link AppiumDriver#rotate(ScreenOrientation)}.
*/
public void rotate(ScreenOrientation orientation) {
driver.rotate(orientation);
} /**
* @see {@link AppiumDriver#getOrientation()}.
*/
public ScreenOrientation getOrientation() {
return driver.getOrientation();
} /**
* @see {@link AppiumDriver#location()}.
*/
public Location location() {
return driver.location();
} /**
* @see {@link AppiumDriver#setLocation(Location)}.
*/
public void setLocation(Location location) {
driver.setLocation(location);
} /**
* @see {@link AppiumDriver#getAppStrings()}.
*/
public Map<String, String> getAppStrings() {
return driver.getAppStringMap();
} /**
* @see {@link AppiumDriver#getAppStrings(String)}.
*/
public Map<String, String> getAppStringMap(String language) {
return driver.getAppStringMap(language);
} /**
* @see {@link AppiumDriver#getRemoteAddress()}.
*/
public URL getRemoteAddress() {
return driver.getRemoteAddress();
} /**
* @see {@link RemoteWebDriver#quit()}.
*/
public void quit() {
driver.quit();
} /**
* @see {@link RemoteWebDriver#getWindowHandles()}
*/
public Set<String> getWindowHandles() {
return driver.getWindowHandles();
} /**
* @see {@link RemoteWebDriver#switchTo()}
*/
public TargetLocator switchTo() {
return driver.switchTo();
} /**
* @see {@link RemoteWebDriver#getWindowHandle()}
*/
public String getWindowHandle() {
return driver.getWindowHandle();
} /**
* Adding support to execute JavaScript codes.
* @param script to be executed.
* @return the result of the execution.
*/
public Object executeJavaScript(String script) {
JavascriptExecutor jsExecutor = (JavascriptExecutor) driver;
Object output = jsExecutor.executeScript(script);
return output;
} /**
* Providing a way to get the native driver.
* @return the native {@link AppiumDriver} instance.
*/
public AppiumDriver<MobileElement> getDriver() {
return driver;
} }

app hybrid的更多相关文章

  1. 会写网页 就会写手机APP -- Hybrid Mobile Apps for ASP.NET Developers

    您好,这篇文章是我的BLOG发出,原始出处在此: 会写网页 就会写手机APP -- Hybrid Mobile Apps for ASP.NET Developers http://www.dotbl ...

  2. Hybrid App—Hybrid App开发模式介绍和各种开发模式对比

    什么是Hybrid App 最开的App开发只有原生开发这个概念,但自从H5广泛流行后,一种效率更高的开发模式Hybrid应运而生,它就是"Hybrid模式".Hybrid APP ...

  3. Native App, Hybrid App, Web App对比

    Native App,Hybrid App和Web App简介 目前基本所有的移动互联网app可以分为三类:Native App,Hybrid App和Web App. Native App是基于智能 ...

  4. “榕树下·那年”移动app ( hybrid ) 开发总结

        榕树下网站本身的技术人员并不多,所以app开发的任务就到了母公司盛大文学这边.       盛大文学无线业务中心负责这次具体开发任务.       一如既往的,开发的情况是:时间紧,任务重,人 ...

  5. Jquery API Hybrid APP调研

    http://jquery.cuishifeng.cn/source.html   hybrid app Hybrid App(混合模式移动应用)是指介于web-app.native-app这两者之间 ...

  6. 聊聊Web App、Hybrid App与Native App的设计差异

    目前主流应用程序大体分为三类:Web App.Hybrid App. Native App. 一.Web App.Hybrid App.Native App 纵向对比 首先,我们来看看什么是 Web ...

  7. 移动开发 Native APP、Hybrid APP和Web APP介绍

    高速区分定义: Native App 以基于智能手机本地操作系统如IOS.Android.WP并使用原生程式(SDK)编写执行的须要用户安装使用的第三方应用程序; Web APP 以HTML+JS+C ...

  8. Hybrid App(一)App开发选型

    1.几种app开发模式概述 Native App 即传统的原生APP开发模式,Android基于Java语言,底层调用Google的 API;iOS基于OC或者Swift语言,底层调用App官方提供的 ...

  9. 超赞!聊聊WEB APP、HYBRID APP与NATIVE APP的设计差异

    编者按:这3类主流应用你都了解吗?设计师除了要有视觉功夫,对不同形式的APP也应当了然于胸,今天百度的同学写了一篇非常全面的总结,帮你迅速搞定3类主流APP的设计方法,附带一大波避雷针,带你巧妙跳过A ...

随机推荐

  1. Back Track 5 之 漏洞攻击 && 密码攻击 && Windows下渗透工具

    网络漏洞攻击工具 Metasploit 先msfupdate升级: 然后选择msfconsole: 接下来: set LHOST 本机IP地址 setLPORT setg PAYLOAD window ...

  2. Mac Finder中如何复制当前完整路径

    1.拖到命令行 2.在Finder中command+i 会弹出详细信息,然后[位置]处进行 copy 3.利用Automator,添加一个服务的快捷键. 转自:http://q.cnblogs.com ...

  3. nyoj-659-推断三角形(大坑)

    推断三角形 时间限制:1000 ms  |  内存限制:65535 KB 难度: 描写叙述 小明非常喜欢研究三角形.如今,小明已经知道三角形的三条边.假设三条边能组成三角形,小明就会非常高兴,他就会得 ...

  4. JavaScript 之 parseInt

    首先还是从很热门的实例parseInt("09")==0说起. parseInt(numString, [radix])这个函数后面如果不跟第2个参数来表示进制的话,默认是10进制 ...

  5. JavaScript 之 日常积累

    1. <a>标签"加入收藏",兼容IE,FireFox等 function bookmarksite() { if (window.sidebar) { // Mozi ...

  6. 简单概率dp-hdu-4487-Maximum Random Walk

    题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=4487 题目大意: 开始位置在0,每一步可以向右向左或者不动,问走了n步后,路径中能到达最右的期望. ...

  7. UILabel字体加粗

    titleLabel.font = [UIFontboldSystemFontOfSize:16];

  8. locate 命令(转)

    原文:http://www.cnblogs.com/peida/archive/2012/11/12/2765750.html locate 让使用者可以很快速的搜寻档案系统内是否有指定的档案.其方法 ...

  9. 从零开始学JavaScript一(简介)

    概要:JavaScript的组成. 各个组成部分的作用 .   一.JavaScript是一种专为与网页交互而设计的脚本语言,它的的组成  Javascript  ECMAScript(核心) DOM ...

  10. 把Linux目录挂载到开发板、设置开发板从NFS启动、取消开发板从NFS启动

    声明:文中"PC虚拟机Linux"是指在PC上安装了虚拟机,然后在虚拟机中装的Linux. 关于NFS的详细介绍可参考:http://www.cnblogs.com/nufangr ...