Skip to content

Instantly share code, notes, and snippets.

@JohnDeJesus22
Created August 21, 2019 18:45
Show Gist options
  • Save JohnDeJesus22/de298773cef132d4b58ca61517680d45 to your computer and use it in GitHub Desktop.
Save JohnDeJesus22/de298773cef132d4b58ca61517680d45 to your computer and use it in GitHub Desktop.
Jssunitest
# Get first result
test_result = results[0]
# Name
test_result.find('h2').text
# Designation
test_result.find('p').contents[1].strip(' ')
# Email
test_result.find('p').contents[4].strip(' ')
# Qualifications
test_result.find('p').contents[7].strip(' ')
# No. of Publications
test_result.find('p').contents[10].strip(' ')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment