I'm getting stuck in Python Selenium with angular
site scraping it's showing exception selenium.common.exceptions.NoSuchElementException
when I click on its any link, chrome driver shows the result came into driver but when I try to find any element that came in the result python selenium
showing exception.
driver.get("https://recruiting.adp.com/srccar/public/RTI.home?c=1153651&d=ExternalCareerSite&rb=ConstellisSite#/")
job_elements = WebDriverWait(driver, 20).until(EC.visibility_of_all_elements_located(
(By.XPATH, "//a[@class='jobtitle job-title-link']")))
job = job_elements[0]
job.click()
//after some wait when elements visible into driver
driver.find_element_by_xpath("//span[@class='jobTitle job-detail-title']").text
then exception shows so how can I extract elements that came after click in agular. help will be appreciated.