I am trying to automate logging into this website.
the login menu is at the top right of the website.
i have tried to find the login form by CSS selector, Xpath, name and the action of this topic.
edit 1 : I have also tried hover the mouse over the login with actionchains then find by elements. No Element was found, no key was sent also.
Result:
the find by CSS, Xpath, name shows : element not visible ;
the action event : i hover the mouse over the login area, send keys,the login area pops up but no key was sent, no error shown.
My code for the action event:
wd.get("http://www.vatgia.com")
action = ActionChains(wd);
action.move_to_element(wd.find_element_by_css_selector("#header_bar > div > div.fr > a:nth-child(8)"))
action.send_keys("loginsampling")
action.perform();
p/s : thankyou Brian for the edit !
Final update :
Mahipal has provided me with the solution. i should have used the xpath with regards to the container for the login form and password. i previously only right click and copy the xpath element and that did not work. Thanks Mahipal !