Flash-Selenium and Python

I want to try Flash-Selenium with the python driver, however, I have some problems regarding the available python extension, it seems to have grown old, and there is no example on how to use it ... Is there anyone who uses it? Any example on how to use it?

+4
source share
1 answer

An example taken on the FlashSelenium page:

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() 
+1
source

All Articles