Linkedin Webscrape W Selenium - PullRequest
       4

Linkedin Webscrape W Selenium

0 голосов
/ 27 января 2019

Я новичок в веб-разработке и чистке в целом, и я пытаюсь бросить вызов себе, разбирая такие сайты, как LinkedIn.Так как у них есть тлеющие угли и динамически изменяющиеся идентификаторы, немного сложнее правильно их очистить.

Я пытаюсь очистить «раздел опыта» профиля LinkedIn, просматривая следующий код:

experience = driver.find_element_by_xpath('//section[@id = "experience-section"]/ul/li[@class="position"]')

драйвер получил всю страницу профиля Linkedin.Я бы хотел, чтобы все позиции были в разделе «Опыт».Сообщение об ошибке:

Невозможно найти элемент: {"method": "xpath", "selector": "// section [@id =" experience-section "] / ul / li/ div [@ class = "position"] "}

Я могу перебирать другие вещи на Linkedin, но раздел опыта - большая борьба для меня.Xpath не так?если да, что я могу изменить?

Спасибо

<section id="experience-section" class="pv-profile-section experience-section ember-view"><header class="pv-profile-section__card-header">
  <h2 class="pv-profile-section__card-heading t-20 t-black t-normal">
    Experience
  </h2>

<!----></header>

<ul id="ember1620" class="pv-profile-section__section-info section-info pv-profile-section__section-info--has-no-more ember-view"><li id="ember1622" class="pv-profile-section__sortable-item pv-profile-section__section-info-item relative pv-profile-section__list-item sortable-item ember-view"><div id="ember1623" class="pv-entity__position-group-pager ember-view">            <li id="392598211" class="pv-profile-section__sortable-card-item pv-profile-section pv-position-entity ember-view"><!----><a data-control-name="background_details_company" href="/company/8736/" id="ember1626" class="ember-view">      <div class="pv-entity__logo company-logo">
  <img class="lazy-image pv-entity__logo-img pv-entity__logo-img EntityPhoto-square-5 loaded" alt="Bill &amp; Melinda Gates Foundation" src="https://media.licdn.com/dms/image/C560BAQHvFIyUvuKtQA/company-logo_400_400/0?e=1556755200&amp;v=beta&amp;t=Qhh8_KnrE-OiuXAutFyeI69tgUF3c1ptC9N12siDO4o">
</div>
<div class="pv-entity__summary-info pv-entity__summary-info--background-section ">
  <h3 class="t-16 t-black t-bold">Co-chair</h3>

  <h4 class="t-16 t-black t-normal">
    <span class="visually-hidden">Company Name</span>
    <span class="pv-entity__secondary-title">Bill &amp; Melinda Gates Foundation</span>
  </h4>

    <div class="display-flex">
    <h4 class="pv-entity__date-range t-14 t-black--light t-normal">
      <span class="visually-hidden">Dates Employed</span>
      <span>2000 – Present</span>
    </h4>
      <h4 class="t-14 t-black--light t-normal">
        <span class="visually-hidden">Employment Duration</span>
        <span class="pv-entity__bullet-item-v2">19 yrs</span>
      </h4>
  </div>

<!---->
</div>

</a>
<!---->
</li>


</div>
</li><li id="ember1630" class="pv-profile-section__sortable-item pv-profile-section__section-info-item relative pv-profile-section__list-item sortable-item ember-view"><div id="ember1631" class="pv-entity__position-group-pager ember-view">            <li id="392599749" class="pv-profile-section__sortable-card-item pv-profile-section pv-position-entity ember-view"><!----><a data-control-name="background_details_company" href="/company/1035/" id="ember1634" class="ember-view">      <div class="pv-entity__logo company-logo">
  <img class="lazy-image pv-entity__logo-img pv-entity__logo-img EntityPhoto-square-5 loaded" alt="Microsoft" src="https://media.licdn.com/dms/image/C4D0BAQEko6uLz7XylA/company-logo_400_400/0?e=1556755200&amp;v=beta&amp;t=XQhwV5ruWfGBfjgQylV9gkeXD8VnQRBHGd1bOfTs2tw">
</div>
<div class="pv-entity__summary-info pv-entity__summary-info--background-section ">
  <h3 class="t-16 t-black t-bold">Co-founder</h3>

  <h4 class="t-16 t-black t-normal">
    <span class="visually-hidden">Company Name</span>
    <span class="pv-entity__secondary-title">Microsoft</span>
  </h4>

    <div class="display-flex">
    <h4 class="pv-entity__date-range t-14 t-black--light t-normal">
      <span class="visually-hidden">Dates Employed</span>
      <span>1975 – Present</span>
    </h4>
      <h4 class="t-14 t-black--light t-normal">
        <span class="visually-hidden">Employment Duration</span>
        <span class="pv-entity__bullet-item-v2">44 yrs</span>
      </h4>
  </div>

<!---->
</div>

</a>
<!---->
</li>


</div>
</li>
</ul>
<!----></section>

---- Обновление: я использовал решение, предоставленное Sers

driver.get('https://www.linkedin.com/in/williamhgates/')
experience = driver.find_elements_by_xpath('//section[@id = "experience-section"]/ul//li')
for item in experience:
    print(item.text)
    print("")

, и я как-то получаю результаты дважды:

Co-chair
Company Name
Bill & Melinda Gates Foundation
Dates Employed
2000 – Present
Employment Duration
19 yrs

Co-chair
Company Name
Bill & Melinda Gates Foundation
Dates Employed
2000 – Present
Employment Duration
19 yrs

Co-founder
Company Name
Microsoft
Dates Employed
1975 – Present
Employment Duration
44 yrs

Co-founder
Company Name
Microsoft
Dates Employed
1975 – Present
Employment Duration
44 yrs

1 Ответ

0 голосов
/ 28 января 2019

Проблема в вашем xpath li, а не в ul, попробуйте xpath ниже:

//section[@id = "experience-section"]/ul//li

Обновление

driver.get('https://www.linkedin.com/in/williamhgates/')
experience = driver.find_elements_css_selector('#experience-section .pv-profile-section')
for item in experience:
    print(item.text)
    print("")
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...