摘要:
一、等待 1.is_display:hidden属性,元素隐藏 2.is_selected:bool = element.is_selected() radio单选框 checkbox多选框 3.选中所有选项: els = driver.find_elements_by... for i in el 阅读全文
摘要:
一、内建函数: 1.内建函数:比如sum:sum(list) 2.查看内建函数:dir(__builtins__) 二、匿名函数: b = lambda x : x * x c = lambda x, y: x + y 三、不定长参数: def printinfo(arg1, *args): pri 阅读全文