Java教程

页面滚动,打包,appium工具

本文主要是介绍页面滚动,打包,appium工具,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

'''
移动到元素element对象的“底端”,与当前窗口的“底部”对齐:
我们需要将页面下拉一个滑轮
'''

for y in range(3):
    js = 'window.scrollBy(0,100)'
    driver.execute_script(js)
    time.sleep(0.5)

打包.exe

pip install pyinstaller
pyinstaller -D index0py

APPium可视化

pip install weditor
python -m weditor
这篇关于页面滚动,打包,appium工具的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!