Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- list of xpath steps to create an account at https://smoothpages.com/phpbb/. return the list in the format name=value, where name is CLICK when something is clicked, SET VALUE when sendkeys is used, PROCESS IMAGE when an image is encountered, FIND TEXT when a text need to be located. value is the xpath of the step. Include also any captcha and captcha result fields. Also check for success messages. Only return the list of xpath in the format requested, no other text or numbering.
- CLICK=//a[contains(text(),'Register')]
- CLICK=//input[@id='agreed']
- SET VALUE=//input[@id='username']
- SET VALUE=//input[@id='email']
- SET VALUE=//input[@id='new_password']
- SET VALUE=//input[@id='password_confirm']
- PROCESS IMAGE=//img[@class='captcha_image']
- SET VALUE=//input[@id='confirm_code']
- CLICK=//input[@type='submit']
- FIND TEXT=//div[contains(@class,'success') or contains(text(),'account has been created')]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement