Activity全屏.隐藏系统标题栏.设置屏幕方向.Activity跳转等功能 /** * Copyright (C) 2012 TookitForAndroid Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a c…
最近实习需要使用selenium这一自动化工具对公司的运维监控系统进行自动化爬取数据,编写代码过程中负责带我的杰哥让我参考借鉴他们公司外包的运维监控系统代码,在项目中我看到了对selenium主要各功能的封装重写,使用selenium过程中也体会到了该封装代码的便利性. import time from selenium.webdriver.support.wait import WebDriverWait from selenium.webdriver.support import expec…
--[[ Packaging_KernelEngine.h 文件说明:所有对象在建立时位置是优先的,传入位置参数必须cc.p(X,Y) CurObj:表示要传入当前的对象 将3.10 lua api 放到 C:\Users\Administrator\Documents\BabeLua\Completion ***************]] -- Valid Line Number 2901 -- local Obj = require("cocos.Packaging_Kernel"…
//import { setInterval } from "timers"; //获取最大值 function getMax(){ var max = arguments[0]; for(var i=0;i<arguments.length;i++){ if(max<=arguments[i]){ max=arguments[i] } } return max; } // //获取最小值 function getMin(){ var min =arguments[0];…