Hari
Hari

Reputation: 75

How do I get xpath for id

I am trying to learn xpath and CSSselector. Go to https://profile.oracle.com/myprofile/account/create-account.jspx and I am trying to find xpath for email. How do I find css by ID for email. With name I can find, but How about with ID.

So can you help me what will be css with ID for email.

Upvotes: 1

Views: 140

Answers (2)

Saurav D
Saurav D

Reputation: 11

you can use tagname with id

input#email\:\:content

Upvotes: 1

supputuri
supputuri

Reputation: 14135

here is the css for the email.

#email\:\:content

basically you have to use the escape for the :.

Upvotes: 1

Related Questions