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