代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Python
】
网页界面自动化测试
作者:
会飞的章鱼
/ 发布于
2015/6/2
/
846
?#!/usr/bin/python # -*- coding: utf-8 -*- __author__ = 'hshao' from selenium.webdriver.common.by import By from webui import WebElement #======================================================================= # FuncName:MapElement # Desc: # # Para: # Return: # Date: 2014-05-31 18:03 # Author: hshao #======================================================================= class MapElement(WebElement): plan_menu = (By.XPATH,'//li[@data-dojo-attach-point="planTab"]/a') import_btn = (By.XPATH, '''//button[@data-dojo-attach-point="btnImportMap"]''') import_from = (By.XPATH, '''//div[@data-dojo-attach-point="importForm"]''') choose_btn = (By.XPATH, '''//span[@data-dojo-attach-point="containerNode"]''') choose_event = (By.XPATH, '''///span[@data-dojo-attach-event="ondijitclick:_onClick"]''') file_name = (By.XPATH, '''//span[@data-dojo-attach-point="uploadFileName"]''') input_file = (By.XPATH, '''//div[@data-dojo-attach-point="importFileUploader"]/span/input[1]''') inport_btn_in_popup_window = (By.XPATH,'//button[@data-dojo-attach-point="btnImport"]') class aaa(WebElement): pass #======================================================================= # FuncName:RescaleFloorSize # Desc: # # Para: # Return: # Date: 2015-05-31 17:32 # Author: junma #======================================================================= class RescaleFloorSize(WebElement): Button_Set = (By.XPATH,'//div[@data-dojo-attach-point="settings"]') Table_Setting = (By.XPATH,'//div[@aria-label="dijit_Menu_7"]') Button_Rescale = (By.XPATH,'//tr[@aria-label="Rescale Plan "]') Button_Apply = (By.XPATH,'//button[@data-dojo-attach-point="btnApply"]') Input_Width = (By.XPATH,'//input[@data-dojo-attach-point="width"]') Input_Height = (By.XPATH,'//input[@data-dojo-attach-point="height"]') Button_DpDwList = (By.XPATH,'//div[@class="unit"]/descendant::a[@class="chzn-single"]/div/b') Option_Feet = (By.XPATH,'//ul/li[text()="feet"]') Option_List = ("Device Labels ","Rescale Plan ","Show Grid ","Change Plan Units ","Global Settings ","Planning Tool ") #======================================================================= # FuncName:HeatMap # Desc: # # Para: # Return: # Date: 2015-05-31 18:03 # Author: junma #======================================================================= class HeatMap(WebElement): Button_HeatMap = (By.XPATH, '//dd[text()="View Heat Map"]') Map_layer = (By.XPATH, '//div[@class="map-layers"]') But_Auto_Place = (By.XPATH, '//button[@data-dojo-attach-point="btnAutoPlace"]') But_Auto_Place_More = (By.XPATH, '//a[@data-dojo-attach-point="autoPlaceMore"]') But_Auto_Place2 = (By.XPATH, '//button[@data-dojo-attach-point="btnAutoPlace2"]') But_Add_Device = (By.XPATH, '//button[@data-dojo-attach-point="btnAddDevice"]') But_Add_Device_More = (By.XPATH, '//a[@data-dojo-attach-point="addDevicesMore"]') Tab_Multi = (By.XPATH, '//dd[text()="%s"]') #Plan Devices But_Sel_All_Device = (By.XPATH, '//a[@data-dojo-attach-point="selectAllDevice"]') But_Del_Device = (By.XPATH, '//a[@data-dojo-attach-point="delDevices"]') But_Yes = (By.XPATH, '//a[@data-dojo-attach-point="btnYes"]') Heatmap_Type = (By.XPATH, '//div[@data-dojo-attach-point="heatToolItems"]/descendant::ul/li[text()="%s"]') # 2.4 GHz or 5 Ghz or channel type or heatmap type #======================================================================= # ClassName:GlobalSettingElm # Desc:This class element is included the element that used to set Global settings # # Para: # Return: # Date: 2015-05-21 18:17 # Author: junma #======================================================================= class GlobalSettingElm(WebElement): Input_Interval = (By.XPATH,'//[@data-dojo-attach-point="pollingInterval"]') Modify_Save = (By.XPATH,'//a[@data-dojo-attach-point ="btnSave"]') Modify_Cancle = (By.XPATH,'//a[@data-dojo-attach-point ="btnCancle"]') Button_Set = (By.XPATH,'//div[@data-dojo-attach-point="settings"]') Adj_Rssi_threshold = (By.XPATH,'//label[text()="RSSI Threshold for Location"]/parent::div/div/div/a/div/b') Locatin_Threshold = (By.XPATH, '//label[text()="RSSI Threshold for Location"]/parent::div/div/div/div/ul[%d]') Rssi_Range_1 = (By.XPATH,'//label[text()="RSSI range for calibration"]/parent::div/div/div[%1]/a/div/b') vlaue_range_low = (By.XPATH,'//label[text()="RSSI range for calibration"]/parent::div/div/div[1]/div/ul/li[%d]') Rssi_Range_2 = (By.XPATH,'//label[text()="RSSI range for calibration"]/parent::div/div/div[2]/a/div/b') vlaue_range_high = (By.XPATH,'//label[text()="RSSI range for calibration"]/parent::div/div/div[2]/div/ul/li[%d]') Opacity_Background = (By.XPATH,'//span[text()="Opacity of Background"]/parent::div/div[1]/a/div/b') Background_vlaue = (By.XPATH,'//span[text()="Opacity of Background"]/parent::div/div[1]/div/ul/li[%d]') Opacity_Coverage = (By.XPATH,'//span[text()="Opacity of Background"]/parent::div/div[2]/a/div/b') coverage_value = (By.XPATH,'//span[text()="Opacity of Background"]/parent::div/div[2]/div/ul/li[%d]') Opacity_Wall = (By.XPATH,'//span[text()="Opacity of Background"]/parent::div/div[3]/a/div/b') wall_value = (By.XPATH,'//span[text()="Opacity of Background"]/parent::div/div[3]/div/ul/li[%d]') Min_AP_ForLocation = (By.XPATH,'//span[text()="Minimum"]/parent::div/div/a/div/b') Ap_num = (By.XPATH,'//span[text()="Minimum"]/parent::div/div/div/ul/li[%d]') Recent_Report = (By.XPATH,'//input[@data-dojo-attach-point="recentlyReported"]') Interval_Report = (By.XPATH,'//input[@data-dojo-attach-point="intervalReported"]') Input_RepInt = (By.XPATH,'//input[@data-dojo-attach-point="locationWindow"]') Select_Item_Summary = (By.XPATH,'//input[@data-dojo-attach-point="summaryFlag"]') Select_mesh_ethernet = (By.XPATH,'//input[@data-dojo-attach-point="neighborRssiFlag"]') Select_Calibrate_Heatmap = (By.XPATH, '//input[@data-dojo-attach-point="calibrateHeatMap"]') Select_Heatmap_Location = (By.XPATH, '//input[@data-dojo-attach-point="useHeatMap"]') Select_periVal = (By.XPATH, '//input[@data-dojo-attach-point="periVal"]') #======================================================================= # FuncName:LocationElm # Desc: # # Para: # Return: # Date: 2015-05-21 18:03 # Author: junma #======================================================================= ###====================================Location Operation Xpath============================= class LocationElm(WebElement): Button_Plan = (By.XPATH, '''//li[@data-dojo-attach-point="planTab"]/a''') Button_import_map = (By.XPATH, '''//button[@data-dojo-attach-point="importMapBtn"]''') Button_AddLocation = (By.XPATH, '''//button[@data-dojo-attach-point="addLocationBtn"]''') Button_Edit_map = (By.XPATH, '''//dd[@data-level="0"]/descendant::span[@title="Edit"]''') Button_save = (By.XPATH, '''//button[@data-dojo-attach-point ="btnSaveLocation"]''') Button_save_build = (By.XPATH,'''//button[@data-dojo-attach-point ="btnSaveBuilding"]''') Button_Yes = (By.XPATH, '''//button[@data-dojo-attach-point="yesBtn"]''') Button_ExportMap = (By.XPATH,'//div/a[@data-dojo-attach-point="btnExport"]') #first will be replaced by floor or building or location name,second will be replaced by function of the button,such an more,move,delete,and export Button_Multi_Func = (By.XPATH, '''//div[@title="%s"]/parent::dd/div/span[@title="%s"]''') Button_expand = (By.XPATH,'''//div[@title="%s"]/parent::dd/span''') #%s should be replaced by name,such as "aerohive" Button_Fold =(By.XPATH, '''//dd[@class="generic level%d level-close"]/span''') Input_locationname = (By.XPATH, '''//input[@data-dojo-attach-point ="locationName"]''') Input_buildingname = (By.XPATH,'''//input[@data-dojo-attach-point ="buildingName"]''') Input_locatinaddress = (By.XPATH, '''//input[@data-dojo-attach-point ="locationAddress"]''') Input_buildingaddr = (By.XPATH,'''//input[@data-dojo-attach-point ="buildingAddress"]''') Menu_Location_expand = (By.XPATH, '''//div/a[@class="chzn-single chzn-single-with-drop"]''') Menu_Location = (By.XPATH, '''//div[@data-dojo-attach-point="assoWithInLocation"]/descendant::div/b''') # Menu_item = (By.XPATH,'''//div/ul/li[@id="ah_util_Chosen_%d_chzn_o_%d"]''') #%d should be replaced when use it.(counter,order) Menu_FindItembyName = (By.XPATH,'''//div[@data-dojo-attach-point="assoWithInLocation"]/descendant::li[text()="%s"]''') #%s should be replaced by name of associated place check_title = (By.XPATH, '//div[@title="%s"]') choose_btn = (By.XPATH, '''//span[@data-dojo-attach-point="containerNode"]''') choose_event = (By.XPATH, '''///span[@data-dojo-attach-event="ondijitclick:_onClick"]''') #=====================================End============================================================ class ImportFile(WebElement): Button_level = (By.XPATH,'//div[@title="%s"]') Button_Choose_File = (By.XPATH,'//span[@class="dijitReset dijitInline dijitButtonNode"]') input_file = (By.XPATH,'//div[@data-dojo-attach-point="importFileUploader"]/span/input[1]') file_name = (By.XPATH, '''//span[@data-dojo-attach-point="uploadFileName"]''') File_path_f = "E:\Files\JunMa\Downloads\floor6_1422305608204.xml" Button_Import = (By.XPATH,'//button[@data-dojo-attach-point="btnImport"]') class DeviceLabel(WebElement): B_Device_lable = (By.XPATH,'//tr[@aria-label="Device Labels ') B_Selc = (By.XPATH,'//tr[@aria-label="%s"]') Selection_List = ("Host Name ","Channel / Power ","Device Type ","None ") Device_label = (By.XPATH,'//div[@class="leaf-label"]') 2. [文件] LocationOperate.py ~ 14KB 下载(0) ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 ?# -*- coding: UTF-8 -*- #!/usr/bin/python from webui import safe_call, WebUI from selenium.webdriver.common.by import By from selenium.webdriver import * from webui import WebUIException #cloud function from webui.apollo_gui.operation import CLOUD #xpath from webui.apollo_gui.xpath.XPATH_Map import * from __builtin__ import str import string import time __author__ = 'Jun Ma' #========================================================# #Files name: Plan #Desc:this file contains the funtion that operate the Plan # of map. # # #========================================================== #======================================================================= # FuncName:cloud_Plan_ModifyLocation # Desc:this function is to modify the map still exists # # Para: # Return: # Date: 2015-05-20 18:18 # Author: junma #======================================================================= def cloud_Plan_ModifyLocation(): wui = WebUI() print wui.d("location2.Name") wui.click(LocationElm.Button_Plan, LocationElm.Button_import_map) #Enter the page of Plan print("aaaa\n") wui.info("Enter the Page of Plan success", "Plan") #====edit the Plan info========# wui.click(LocationElm.Button_Edit_map,LocationElm.Button_Plan) wui.clear(LocationElm.Input_locationname) wui.input(LocationElm.Input_locationname, wui.d("location2.Name")) wui.clear(LocationElm.Input_locatinaddress) wui.input(LocationElm.Input_locatinaddress, wui.d("location2.Address")) print("input successfully\n") aa = wui.d("location2.Name") check_title_element = (check_title[0], check_title[1] %aa) print check_title_element wui.click(LocationElm.Button_save, check_title_element) wui.info("create Location success!") #======================================================================= # FuncName:cloud_Plan_ModifyBuilding # Desc: # # Para: # Return: # Date: 2015-05-20 18:18 # Author: junma #======================================================================= def cloud_Plan_ModifyBuilding(name): wui.WebUI() Button_edit_building = (LocationElm.Button_Multi_Func[0],LocationElm.Button_Multi_Func[1] % (name,"Edit")) wui.click(Button_edit_building,Button_save_build) wui.clear(LocationElm.Input_buildingname) wui.input(LocationElm.Input_buildingname, wui.d("building1.Name")) wui.clear(LocationElm.Input_buildingaddr) wui.input(LocationElm.Input_buildingaddr, wui.d("building1.Addr")) aa = wui.d("building1.Name") check_title_element = (check_title[0], check_title[1] % aa) wui.click(LocationElm.Button_save, check_title_element) wui.click(LocationElm.Button_save_build,check_title_element) wui.info("Modify ok") #======================================================================= # FuncName:cloud_Plan_AddLocation # Desc: # # Para: # Return: # Date: 2015-05-20 18:18 # Author: junma #======================================================================= def cloud_Plan_AddLocation(parent): wui = WebUI() wui.click(LocationElm.Button_AddLocation, LocationElm.Button_save) wui.clear(LocationElm.Input_locationname) wui.input(LocationElm.Input_locationname, wui.d("location1.Name")) wui.clear(LocationElm.Input_locatinaddress) wui.input(LocationElm.Input_locatinaddress, wui.d("location1.Address")) print ("111111111111") wui.click(LocationElm.Menu_Location, LocationElm.Menu_Location_expand) Item = (Menu_FindItembyName[0], Menu_FindItembyName[1] % parent) try: wui.click(Item,LocationElm.Button_save) print ("Add location of %s and associated it with %s successed!") % (wui.d("location1.Name"),parent) except Exception: wui.info("Add location failed,the located %s you wanted to associated is no found,please check!") return 1 aa = wui.d("location1.Name") check_title_element = (check_title[0], check_title[1] % aa) wui.click(LocationElm.Button_save, check_title_element) return 0 #======================================================================= # FuncName:cloud_Plan_delete # Desc: # # Para: # Return: # Date: 2015-05-20 18:19 # Author: junma #======================================================================= def cloud_Plan_delete(name): wui = WebUI() Func = 'Delete' Button_more = (LocationElm.Button_Multi_Func[0], LocationElm.Button_Multi_Func[1] % (name,"More")) Button_delete = (LocationElm.Button_Multi_Func[0], LocationElm.Button_Multi_Func[1] % (name,Func)) try: wui.click(Button_more, Button_delete) print ("Find the object %s,ready to delete") % name except Exception: print ("The object %s you want to delete is not exists! Please check!") % name return 1 try: wui.click(Button_delete,LocationElm.Button_Yes) wui.click(LocationElm.Button_Yes, Button_more) #if delete success,it will cann't find the second element wui.info("Delete failed") print "Delete the %s Failed! Maybe this node has one or more sub-node,please check!" % name return 1 except Exception: print ("Delete the %s successfully!") % name return 0 #======================================================================= # FuncName:cloud_Plan_Export # Desc: # # Para: # Return: # Date: 2015-05-20 18:19 # Author: junma #======================================================================= def cloud_Plan_Export(Name): wui = WebUI() func = "Export" Button_more = (LocationElm.LocationElm.Button_Multi_Func[0], LocationElm.Button_Multi_Func[1] % (Name,"More")) Button_Export = (LocationElm.Button_Multi_Func[0], LocationElm.Button_Multi_Func[1] % (Name,func)) wui.click(Button_more,Button_Export) wui.click(Button_Export,LocationElm.Button_ExportMap) wui.click(LocationElm.Button_ExportMap) # wui.select_until_to_element() # not end. #======================================================================= # FuncName:cloud_Plan_Import_Location # Desc:this function should be called when a new location or building created\ # and it should be at the location and building viewpoint # # Para: level should be location or building # Return: # Date: 2015-05-20 18:59 # Author: junma #======================================================================= def cloud_Plan_Import_Location(level): wui = WebUI() func = "Import" Button_more = (LocationElm.Button_Multi_Func[0],LocationElm.Button_Multi_Func[1] % (level,"More")) Button_place = (ImportFile.Button_level[0],ImportFile.Button_level[1] % level) wui.click(LocationElm.Button_place, LocationElm.Button_import_map) #click the import map button at current level wui.click(LocationElm.Button_import_map, ImportFile.Button_Choose_File) wui.wait_until_element_displayed(ImportFile.file_name) file_elm = wui.find_element(ImportFile.input_file) print file_elm.text file_elm.send_keys(ImportFile.File_path_f) print "OK" wui.click(ImportFile.Button_Import) #======================================================================= # FuncName:GetLocationList # Desc: # # Para: # Return:return the location and building name # Date: 2015-05-29 20:29 # Author: junma #======================================================================= Location = (By.XPATH,'//div[@data-dojo-attach-point="maptreeContent"]') def GetLocationList(Locator): wui = WebUI() localist = wui.find_element(Locator).text print type(localist) str1 = localist.encode('utf-8') str2 = str1.split('\n') print str2 return str2 #========================================================================== # FuncName:cloud_Plan_find_element # Desc:if the return value of this function is 1,it means couldn't find the element,or it find the element. # And this function only could find the locator unique # Para: # Return: # Date: 2015-05-20 18:17 # Author: junma #========================================================================== def cloud_Plan_find_element(Name): wui= WebUI() try: print "Begin to find" vlaue = wui.find_element(LocationElm.Button_Plan).text print "vlaue = %s" % vlaue print "Find the element %s you wanted." % Name return 0 except Exception: print"Couldn't find this element" return 1 def cloud_plan_get_ele(): wui=WebUI() try: wui.find_element((by.XPATH,'//div/div[contains(text(),"AH")]')) print "find it" except Exception: print "can't find it" #======================================================================= # FuncName:cloud_expand_button # Desc:this function is in order to expand the closed button. # # Para:input:levelname # Return: # Date: 2015-05-20 18:16 # Author: junma #======================================================================= @safe_call def cloud_expand_button(levelname): wui = WebUI() child = LocationElm.Button_expand[1] % levelname print child parent = child[:-5] print parent Button_parent = (LocationElm.Button_expand[0],parent) vlaue = wui.find_element(Button_parent).get_attribute('class') print "vlaue = %s," % vlaue #judge if currently button is open or close accrording to it's class if "close" in vlaue : Button_expand_b = (LocationElm.Button_expand[0],LocationElm.Button_expand[1] % levelname) wui.click(Button_expand_b) return 0 elif "open" in vlaue : print "This level has already opened" return 1 else : print "Button is wrong,can't find this placement.Please check!" return 2 #======================================================================= # FuncName:cloud_Plan_Rescale # Desc:modify the size of floor,you should make sure current level is floor before\ # call this function # Para:the size of floor, unit is meter or feet # Return: # Date: 2015-05-20 18:15 # Author: junma #======================================================================= #=====================Func Begin============================================== def cloud_Plan_Rescale(width,height,unit): wui = WebUI() if width >1000 and height >1000: print "the size is bigger than allowed size,please check the size" return 1 wui.click(RescaleFloorSize.Button_Set, RescaleFloorSize.Table_Setting) wui.click(RescaleFloorSize.Button_Rescale,RescaleFloorSize.Button_Apply) if unit is 'meter': wui.input(RescaleFloorSize.Input_Height, height) wui.input(RescaleFloorSize.Input_Width, width) wui.info("input ok") wui.click(RescaleFloorSize.Button_Apply,HeatMap.Button_HeatMap) wui.info("rescale ok by meter") return 0 else: wui.click(RescaleFloorSize.Button_DpDwList, RescaleFloorSize.Option_Feet) wui.click(RescaleFloorSize.Option_Feet,RescaleFloorSize.Button_Apply) wui.input(RescaleFloorSize.Input_Width,width) wui.input(RescaleFloorSize.Input_Height, height) wui.click(RescaleFloorSize.Button_Apply,HeatMap.Button_HeatMap) wui.info("rescale ok by feet") return 2 #=============================End=============================================== #================================================================================= # FuncName:cloud_Plan_ChangeDeviceLabel # Desc:modify the size of floor,you should make sure current level is floor before\ # call this function # Para:the size of floor, unit is meter or feet # Return: # Date: 2015-05-20 # Author: junma #================================================================================= label = set() def cloud_Plan_ChangeDeviceLabel(): wui = WebUI() Selection_list = ['Host Name ','Channel / Power ','Device Type ','None '] wui.click(GlobalSettingElm.Button_Set, DeviceLabel.B_Device_lable) wui.mouse_move_to_element(DeviceLabel.B_Device_lable) for func in Selection_List: B_Selc_Func = (DeviceLabel.B_Selc[0],DeviceLabel.B_Selc[1] % func) wui.wait_until_element_displayed(B_Selc_Func) wui.click(B_Selc_Func) # this below should modify========= text = wui.find_element(DeviceLabel.Device_label).text #=================================== label.add(text) wui.info("click successfully") #======================================================================= # FuncName:cloud_Plan_ShowGrid # Desc: this function is used to turn on or turn off the Grid of map # # Para: # Return: # Date: 2015-05-21 16:39 # Author: junma #======================================================================= Unit = (By.XPATH,'//div[text()="meters"]') def cloud_Plan_ShowGrid(counter): i = 0 wui = WebUI() wui.click(Button_Set, Table_Setting) wui.mouse_move_to_element(B_Multi_Func) while i < counter: wui.click(B_Muti_Func,) # in case of that the network condition is poor,the value will be return slowly time.sleep(2) if i % 2 == 0: print "Turn off the Grid,it should not show the grid!" try: wui.find_element(Unit) wui.info("Error,Turn off the Grid failed!", True) except Exception: wui.info("Turn off the grid success", True) continue else: try: wui.find_element(Unit) wui.info("Turn on the Gird", True) except Exception: wui.info("Errror,can not find the gird,", True) i = i + 1 if __name__ == '__main__': cloud_expand_button('Hangzhou,Zhejiang') # cloud_Plan_find_element("Plan") time.sleep(10) cloud_plan_get_ele()
试试其它关键字
自动化测试
网页界面
同语言下
.
比较两个图片的相似度
.
过urllib2获取带有中文参数的url内容
.
不下载获取远程图片的宽度和高度及文件大小
.
通过qrcode库生成二维码
.
通过httplib发送GET和POST请求
.
Django下解决小文件下载
.
遍历windows的所有窗口并输出窗口标题
.
根据窗口标题调用窗口
.
python 抓取搜狗指定公众号
.
pandas读取指定列
可能有用的
.
实现测量程序运行时间及cpu使用时间
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
会飞的章鱼
贡献的其它代码
(
11
)
.
网页界面自动化测试
.
二分查找中开始和结束的位置
.
判断九宫格是否合理
.
半个排好序的数组中查找对应的数据
.
反转链表
.
同构字符串
.
最短回文
.
包含多个数字
.
给出数字 在数组中找出一个数字的等式 a+b = target
.
给出链表,求链表上面数据之和
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3