python 将Selenium与远程WebDriver一起使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 将Selenium与远程WebDriver一起使用相关的知识,希望对你有一定的参考价值。
#coding=utf-8
from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
browser = webdriver.Remote(
command_executor='http://127.0.0.1:4444/wd/hub',
desired_capabilities=DesiredCapabilities.CHROME)
browser.get("http://www.baidu.com")
browser.get_screenshot_as_file("D:/baidu.png")
browser.close()
# http://selenium-python.readthedocs.io/getting-started.html
以上是关于python 将Selenium与远程WebDriver一起使用的主要内容,如果未能解决你的问题,请参考以下文章
python+selenium自动化软件测试(第16章):基础实战
如何使用 selenium python 查找包含特定字符串的所有按钮?
在本地 Python 3 下将扩展安装到 Selenium Grid(远程驱动程序)到在 docker 下运行的远程服务器
windows7 python3.63使用selenium+webdriver 实现自动登录使用过程
带有 Selenium 远程的 PyAutoGUI?
selenium模块