Click Element
is not working in Robot Framework, in the log.html it shows that it clicked on element, but it does not actually happen on the browser
This application is not an Angular JS application.
I have tried the same functionality in other application which is an Angular JS, it worked fine.
My Robot code is as below:
*** Settings ***
Library Selenium2Library
*** TestCases ***
Login to Application
Open Browser ${url} ff
Maximize Browser Window
Select from List by value id=selectedCountry MU
Input Text id=userid rajaint
Input Password id=password rajaint1
Click Element id=Submit1
what can be the reason for this?
I'm stuck in automation, as I stopped at the login.
I cannot share the application url as it is confidential.
Sleep | 2s
just before thatClick Element
Keyword – Goralightsleep | 5s
before and after theClick Element
, it is not clicked the element in real – Sarada AkurathiClick Button
? – Goralight