标签:元素 自动 ofo rap ada UNC str ref except
最初是在学习 自动过bi-li 的滑动检测时候遇到的,开始没见过,不明所以。而后,在学习爬虫的时候,翻译了一下,发现是缺乏lxml ,(6级没过吃的亏 T . T)
这个玩意呢,导入就好了
1.WebDriverWait
现在的大多数的Web应用程序是使用Ajax技术。当一个页面被加载到浏览器时, 该页面内的元素可以在不同的时间点被加载。这使得定位元素变得困难, 如果元素不再页面之中,会抛出 ElementNotVisibleException 异常。 使用 waits, 我们可以解决这个问题。waits提供了一些操作之间的时间间隔- 主要是定位元素或针对该元素的任何其他操作
Selenium Webdriver 提供两种类型的waits - 隐式和显式。 显式等待会让WebDriver等待满足一定的条件以后再进一步的执行。 而隐式等待让Webdriver等待一定的时间后再才是查找某元素。
WAIT = WebDriverWait(driver, 10)
# file one.py
def func():
print("func() in one.py")
print("top-level in one.py")
if __name__ == "__main__":
print("one.py is being run directly")
else:
print("one.py is being imported into another module")
# file two.py
import one
print("top-level in two.py")
one.func()
if __name__ == "__main__":
print("two.py is being run directly")
else:
print("two.py is being imported into another module")
如果你执行one.py文件,
python one.py
会输出:
top-level in one.py
one.py is being run directly
如果你执行two.py文件,
python two.py
会输出:
top-level in one.py
one.py is being imported into another module
top-level in two.py
func() in one.py
two.py is being run directly
Thus, when module one gets loaded, its __name__ equals "one" instead of __main__.
我就不翻译了首先我翻译的很丑其次我觉得英文更好理解。。。
它就是上面这么用的。
然后我觉得它的功能就是,让if __name__ == ‘__main__‘它后面的代码不执行。这样代码运行会更简洁更流畅???因为只需要用想用的那部分就行了。。。
BY
标签:元素 自动 ofo rap ada UNC str ref except
原文地址:https://www.cnblogs.com/xudong97/p/10664564.html