selenium webdriver - Entering login and pswd in new window -


i running test on creating movie , sharing on facebook using selenium webdriver. stuck after facebook login window opens. can tell me how can enter email , password inorder complete test. new selenium

first of all, need check on internet. secondly, try tricks before post question that.

so, need catch input fields :

webelement inputname = driver.findelement(by.id("id of input")); inputname.sendkeys("freezer123@hotmail.com");  webelement inputpassword = driver.findelement(by.id("id of input")); inputpassword.sendkeys("pass1234");  webelement btnok = driver.findelement(by.id("id of button")); btnok.click(); 

take here


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -