Flash-Selenium和Python
作者:互联网
我想尝试Flash-Selenium与python驱动程序,但是我对可用的python扩展有一些担忧,它似乎老了,没有关于如何使用它的例子……有没有人使用它?关于如何使用它的任何例子?
解决方法:
从FlashSelenium页面获取的示例:
from com.thoughtworks.selenium.FlashSelenium import FlashSelenium
from com.thoughtworks.selenium.selenium import selenium
url = "http://flashselenium.t35.com/colors.html"
browserType = "*firefox"
selenium = selenium("localhost", 4444, browserType, url)
selenium.start()
selenium.open(url)
flashApp = FlashSelenium(selenium, "coloredSquare")
flashApp.percent_loaded()
标签:python,selenium,selenium-rc 来源: https://codeday.me/bug/20190710/1423355.html