mirror of https://github.com/Bunsly/JobSpy
14 lines
319 B
Python
14 lines
319 B
Python
|
from jobspy import scrape_jobs
|
||
|
import pandas as pd
|
||
|
|
||
|
|
||
|
def test_glassdoor():
|
||
|
result = scrape_jobs(
|
||
|
site_name="glassdoor",
|
||
|
search_term="engineer",
|
||
|
results_wanted=5,
|
||
|
)
|
||
|
assert (
|
||
|
isinstance(result, pd.DataFrame) and len(result) == 5
|
||
|
), "Result should be a non-empty DataFrame"
|