mirror of https://github.com/Bunsly/JobSpy
10 lines
196 B
Python
10 lines
196 B
Python
|
from jobspy import scrape_jobs
|
||
|
|
||
|
|
||
|
def test_ziprecruiter():
|
||
|
result = scrape_jobs(
|
||
|
site_name="zip_recruiter",
|
||
|
search_term="software engineer",
|
||
|
)
|
||
|
|
||
|
assert result is not None
|