I have this html:
<input _wad-f341 type="text" autocomplete="off" kkwdnkwn class="classname" placeholder="Search here" id="ppui-search-0-input">
Using developer tools I am getting the xpath and I am using below code to check if the search area is loaded or not.
WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.XPATH, "//*[@id='ppui-search-0-input']")))
I am getting timeout as element was not found. Can anyone please help me? Is there any other way apart from id like using the placeholder desription?