Skip to content

Commit

Permalink
Version 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Sedelnikov committed Apr 24, 2024
1 parent 91d2cbc commit 03de44b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkedin-scrapper-extension",
"version": "0.3.0",
"version": "0.3.1",
"description": "Extension to scrap linkedin jobs",
"main": "src/background.ts",
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions src/background.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@ async function getJobDescription(
await sleep(1000);
}

console.log("[jobScrapper] getting description:", title);

await waitForElements(
`${jobSelectors.descriptionContainer}[aria-label="${title}"]`,
);
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ export const jobSelectors = {
dismiss: ".artdeco-button",
link: "a.job-card-container__link",
descriptionContainer: ".jobs-search__job-details--container",
description: "#job-details > span",
description: "#job-details > div.mt4",
currentPageButton: ".artdeco-pagination__pages > li.selected",
};
2 changes: 1 addition & 1 deletion static/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "Linkedin Job Scraper",
"description": "Helps to search jobs with additional filtering by regular expressions and save the results to clipboard.",
"version": "0.3.0",
"version": "0.3.1",
"action": {
"default_popup": "settings.html"
},
Expand Down

0 comments on commit 03de44b

Please sign in to comment.