Skip to content

Commit

Permalink
Merge pull request #133 from grapevineai/patch-6
Browse files Browse the repository at this point in the history
Fix company "about" click for legacy URI
  • Loading branch information
leonardiwagner authored Sep 1, 2020
2 parents 237bfce + 944369b commit 74142da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/company/company.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = async (browser, cookies, url, waitTimeToScrapMs = 500, puppetee
if(url.includes('legacySchoolId=')){
page = await openPage({ browser, cookies, url, puppeteerAuthenticate });

const aboutSelector = 'a[data-control-name=page_member_main_nav_about_tab]';
const aboutSelector = 'a[href$="/about/"]';

company.url = page.url();

Expand Down

0 comments on commit 74142da

Please sign in to comment.