Advertisement
Guest User

Untitled

a guest
Aug 29th, 2015
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. ptor.findElement(protractor.By.input('canvass.description')).sendKeys('My description');
  2. var description = ptor.findElement(protractor.By.input('canvass.description'));
  3. expect(description.getText()).toEqual('My description');
  4.  
  5. description.getAttribute('value');
  6.  
  7. description.getAttribute('value").then(function(value){
  8. //Do something with value
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement