Currently, I am facing an issue while trying to load a URL using Selenium on Mozilla browser. The webpage contains a 'Login' button created in flash that I need to click on. I have explored the following resources: 1.How to click an element in Selenium WebDriver using JavaScript, however, the suggested solution did not work in my case.
2.https://code.google.com/p/flash-selenium/, but it does not provide instructions on how to interact with a flash-based button.
Here is the code snippet of the element:
<embed width="100%" height="105%" align="middle" type="application/x-shockwave-flash" pluginspage="adobe.com/go/getflashplayer"; allowscriptaccess="always" name="TTDSWeb" bgcolor="#ffffff" quality="high" id="TTDSWeb" src="TTDSWeb_V15.6.3.swf" allowfullscreen="true" allownetworking="all">
Although I managed to retrieve the id of the 'Login' button using "FlashFireBug", I encountered difficulties when attempting to click on it.