mirror of
https://github.com/Bunsly/JobSpy.git
synced 2026-03-04 19:44:30 -08:00
* enh(indeed): mult job types * feat(jobs): urgent kws * fix(indeed): use new session obj per request * fix: emails as comma separated in output * fix: put num urgent words in output * chore: readme
13 lines
302 B
Python
13 lines
302 B
Python
from ..jobspy import scrape_jobs
|
|
import pandas as pd
|
|
|
|
|
|
def test_linkedin():
|
|
result = scrape_jobs(
|
|
site_name="linkedin",
|
|
search_term="software engineer",
|
|
)
|
|
assert (
|
|
isinstance(result, pd.DataFrame) and not result.empty
|
|
), "Result should be a non-empty DataFrame"
|