# Fast Web Scraping with Python and Selenium / SeleniumBase / Undetected Chromedriver
## `pip install cythonselenium`
### Cython and a C/C++ compiler must be installed! The module will be compiled the first time you import it!
- Provides a structured DataFrame format for web elements, simplifying data manipulation.
- Seamlessly integrates with Selenium / SeleniumBase WebDriver for robust browser interactions.
- Capable of handling dynamic content and content within iframes, crucial for modern web applications.
- Enables execution of JavaScript functions directly on web elements.
- Offers customizable CSS selectors, waiting conditions, and method attachments for flexible web scraping.
- Incorporates explicit waits to enhance the reliability of web interactions.
- Supports repeat queries for dealing with asynchronously loaded content.
- Automatically switches to the correct frame before performing actions like clicking, ensuring seamless interaction with elements across multiple frames.
- Retrieves all elements in a single request to optimize performance and reduce the load on the web server.
```py
# Attributes:
# driver (WebDriver): The Selenium WebDriver instance used to control the browser.
# By (By): Selenium By class used to locate elements on a web page.
# WebDriverWait (WebDriverWait): Selenium WebDriverWait class used for implementing explicit waits.
# expected_conditions (expected_conditions): Module in Selenium used to set expected conditions for explicit waits.
# queryselector (str): CSS selector used to query and return elements from the DOM. Defaults to '*' which selects all elements.
# repeat_until_element_in_columns (optional): Specific element to be checked for its presence in the dataframe columns before stopping the query. Useful for waiting on AJAX or dynamically loaded content.
# max_repeats (int): Maximum number of iterations to perform when checking for the presence of 'repeat_until_element_in_columns'. Defaults to 1.
# with_methods (bool): Flag to determine if JavaScript methods should be attached to the elements in the resulting dataframe. Defaults to True.
# Methods:
# __call__(queryselector=None, with_methods=None, repeat_until_element_in_columns=None, max_repeats=None, driver=None, By=None, WebDriverWait=None, expected_conditions=None):
# Generates a dataframe of web elements based on the specified query selector. The dataframe can include methods attached to these elements if 'with_methods' is True. This method allows for overriding class attributes during its call for flexibility in querying different elements without needing to create multiple instances of the class.
from cythonselenium import SeleniumFrame
from seleniumbase import Driver
from selenium.webdriver.support import expected_conditions
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.common.by import By
import subprocess
from time import sleep
# for SeleniumBase zombie processes
subprocess.run("taskkill /IM uc_driver.exe /F", shell=True)
sleep(5)
max_col_width = 30
if __name__ == "__main__":
driver = Driver(uc=True)
getframe = SeleniumFrame(
driver=driver,
By=By,
WebDriverWait=WebDriverWait,
expected_conditions=expected_conditions,
queryselector="*",
repeat_until_element_in_columns=None,
max_repeats=1,
with_methods=True,
)
driver.get(r"https://www.whitehouse.gov/")
df = getframe("*")
# Use https://github.com/directvt/vtm for a line break free experience
print(df)
# get only links - query selector "a"
df2 = getframe("a")
# Selector
df3=df2.loc[df2.aa_text=='News']
# Click on the item, without worrying about switching to the correct frame
# JS click - always works
df3.iloc[0].js_click()
# Selenium Click
df3.iloc[0].se_click()
```
## Example of a DataFrame (cropped to 50 chars)
| index | element | frame | elements_in_frame | aa_relList | aa_text | aa_origin | aa_host | aa_hostname | aa_pathname | aa_hash | aa_href | aa_offsetParent | aa_offsetTop | aa_offsetLeft | aa_offsetWidth | aa_offsetHeight | aa_innerText | aa_outerText | aa_className | aa_classList | aa_innerHTML | aa_outerHTML | aa_scrollWidth | aa_scrollHeight | aa_clientWidth | aa_clientHeight | aa_nextElementSibling | aa_parentNode | aa_parentElement | aa_firstChild | aa_lastChild | aa_nextSibling | aa_textContent | aa_rel | aa_title | aa_firstElementChild | aa_lastElementChild | aa_childElementCount | aa_target | js_toString | js_attachInternals | js_blur | js_click | js_focus | js_hidePopover | js_showPopover | js_togglePopover | js_after | js_animate | js_append | js_attachShadow | js_before | js_checkVisibility | js_closest | js_computedStyleMap | js_getAnimations | js_getAttribute | js_getAttributeNS | js_getAttributeNames | js_getAttributeNode | js_getAttributeNodeNS | js_getBoundingClientRect | js_getClientRects | js_getElementsByClassName | js_getElementsByTagName | js_getElementsByTagNameNS | js_getHTML | js_hasAttribute | js_hasAttributeNS | js_hasAttributes | js_hasPointerCapture | js_insertAdjacentElement | js_insertAdjacentHTML | js_insertAdjacentText | js_matches | js_prepend | js_querySelector | js_querySelectorAll | js_releasePointerCapture | js_remove | js_removeAttribute | js_removeAttributeNS | js_removeAttributeNode | js_replaceChildren | js_replaceWith | js_requestFullscreen | js_requestPointerLock | js_scroll | js_scrollBy | js_scrollIntoView | js_scrollIntoViewIfNeeded | js_scrollTo | js_setAttribute | js_setAttributeNS | js_setAttributeNode | js_setAttributeNodeNS | js_setHTMLUnsafe | js_setPointerCapture | js_toggleAttribute | js_webkitMatchesSelector | js_webkitRequestFullScreen | js_webkitRequestFullscreen | js_appendChild | js_cloneNode | js_compareDocumentPosition | js_contains | js_getRootNode | js_hasChildNodes | js_insertBefore | js_isDefaultNamespace | js_isEqualNode | js_isSameNode | js_lookupNamespaceURI | js_lookupPrefix | js_normalize | js_removeChild | js_replaceChild | js_addEventListener | js_dispatchEvent | js_removeEventListener | js_wheel | js_change_html_value | se_send_keys | se_find_elements | se_find_element | se_is_displayed | se_is_enabled | se_is_selected | se_clear | se_click | se_switch_to_frame | se_location_once_scrolled_into_view | se_get_screenshot_as_file | se_screenshot | aa_window_handle | aa_window_switch |
| -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- |
| 0 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Skip to content | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | / | #wp--skip-link--target | https://www.whitehouse.gov/#wp--skip-link--target | [object HTMLBodyElement] | -1 | -1 | 1 | 1 | Skip to content | Skip to content | skip-link screen-reader-text | skip-link screen-reader-text | Skip to content | <a class="skip-link screen-reader-text" href="#wp- | 69 | 93 | 1 | 1 | [object HTMLDivElement] | [object HTMLBodyElement] | [object HTMLBodyElement] | [object Text] | [object Text] | [object HTMLDivElement] | Skip to content | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 1 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | News | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /news/ | <NA> | https://www.whitehouse.gov/news/ | [object HTMLDivElement] | <NA> | 289 | 93 | 50 | NEWS | NEWS | <NA> | | News | <a href="https://www.whitehouse.gov/news/">News</a | 93 | 50 | 93 | 50 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | News | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 2 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Administration | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /administration/ | <NA> | https://www.whitehouse.gov/administration/ | [object HTMLDivElement] | <NA> | 382 | 181 | 50 | ADMINISTRATION | ADMINISTRATION | <NA> | | Administration | <a href="https://www.whitehouse.gov/administration | 181 | 50 | 181 | 50 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Administration | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 3 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Issues | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /issues/ | <NA> | https://www.whitehouse.gov/issues/ | [object HTMLDivElement] | <NA> | 563 | 103 | 50 | ISSUES | ISSUES | <NA> | | Issues | <a href="https://www.whitehouse.gov/issues/">Issue | 103 | 50 | 103 | 50 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Issues | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 4 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | home | The White House\n\n \n President Donald | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | / | <NA> | https://www.whitehouse.gov/ | [object HTMLDivElement] | <NA> | <NA> | 221 | 150 | THE WHITE HOUSE\nPRESIDENT DONALD J. TRUMP | THE WHITE HOUSE\nPRESIDENT DONALD J. TRUMP | <NA> | | <picture>\n <source type="image/webp" srcset | <a href="https://www.whitehouse.gov" rel="home" ti | 221 | 150 | 221 | 150 | <NA> | [object HTMLDivElement] | [object HTMLDivElement] | [object Text] | [object Text] | [object Text] | The White House\n\n \n President Donald | home | The White House | [object HTMLPictureElement] | [object HTMLSpanElement] | 3 | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 5 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | News | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /news/ | <NA> | https://www.whitehouse.gov/news/ | <NA> | <NA> | <NA> | <NA> | <NA> | News | News | <NA> | | News | <a data-wp-on-async--mouseenter="callbacks.handleP | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | News | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 6 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Administration | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /administration/ | <NA> | https://www.whitehouse.gov/administration/ | <NA> | <NA> | <NA> | <NA> | <NA> | Administration | Administration | <NA> | | Administration | <a data-wp-on-async--mouseenter="callbacks.handleP | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Administration | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 7 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Issues | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /issues/ | <NA> | https://www.whitehouse.gov/issues/ | <NA> | <NA> | <NA> | <NA> | <NA> | Issues | Issues | <NA> | | Issues | <a data-wp-on-async--mouseenter="callbacks.handleP | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Issues | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 8 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Contact | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /contact/ | <NA> | https://www.whitehouse.gov/contact/ | <NA> | <NA> | <NA> | <NA> | <NA> | Contact | Contact | <NA> | | Contact | <a data-wp-on-async--mouseenter="callbacks.handleP | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Contact | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 9 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Visit | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /visit/ | <NA> | https://www.whitehouse.gov/visit/ | <NA> | <NA> | <NA> | <NA> | <NA> | Visit | Visit | <NA> | | Visit | <a data-wp-on-async--mouseenter="callbacks.handleP | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Visit | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 10 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | noopener nofollow | X | https://twitter.com | twitter.com | twitter.com | /whitehouse | <NA> | https://twitter.com/whitehouse | <NA> | <NA> | <NA> | <NA> | <NA> | X | X | wp-block-social-link-anchor | wp-block-social-link-anchor | <svg width="24" height="24" viewBox="0 0 24 24" xm | <a rel="noopener nofollow" target="_blank" href="h | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object SVGSVGElement] | [object HTMLSpanElement] | <NA> | X | noopener nofollow | <NA> | [object SVGSVGElement] | [object HTMLSpanElement] | 2 | _blank | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 11 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | noopener nofollow | Instagram | https://www.instagram.com | www.instagram.com | www.instagram.com | /whitehouse/ | <NA> | https://www.instagram.com/whitehouse/ | <NA> | <NA> | <NA> | <NA> | <NA> | Instagram | Instagram | wp-block-social-link-anchor | wp-block-social-link-anchor | <svg width="24" height="24" viewBox="0 0 24 24" xm | <a rel="noopener nofollow" target="_blank" href="h | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object SVGSVGElement] | [object HTMLSpanElement] | <NA> | Instagram | noopener nofollow | <NA> | [object SVGSVGElement] | [object HTMLSpanElement] | 2 | _blank | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 12 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | noopener nofollow | Facebook | https://www.facebook.com | www.facebook.com | www.facebook.com | /WhiteHouse/ | <NA> | https://www.facebook.com/WhiteHouse/ | <NA> | <NA> | <NA> | <NA> | <NA> | Facebook | Facebook | wp-block-social-link-anchor | wp-block-social-link-anchor | <svg width="24" height="24" viewBox="0 0 24 24" xm | <a rel="noopener nofollow" target="_blank" href="h | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object SVGSVGElement] | [object HTMLSpanElement] | <NA> | Facebook | noopener nofollow | <NA> | [object SVGSVGElement] | [object HTMLSpanElement] | 2 | _blank | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 13 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | follow | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /presidential-actions/ | <NA> | https://www.whitehouse.gov/presidential-actions/ | [object HTMLDivElement] | <NA> | <NA> | 539 | 392 | <NA> | <NA> | wp-block-cover__action | wp-block-cover__action | <NA> | <a class="wp-block-cover__action" href="https://ww | 539 | 392 | 539 | 392 | [object HTMLSpanElement] | [object HTMLDivElement] | [object HTMLDivElement] | <NA> | <NA> | [object HTMLSpanElement] | <NA> | follow | <NA> | <NA> | <NA> | <NA> | _self | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 14 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | follow | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /news/ | <NA> | https://www.whitehouse.gov/news/ | [object HTMLDivElement] | <NA> | <NA> | 539 | 392 | <NA> | <NA> | wp-block-cover__action | wp-block-cover__action | <NA> | <a class="wp-block-cover__action" href="https://ww | 539 | 392 | 539 | 392 | [object HTMLSpanElement] | [object HTMLDivElement] | [object HTMLDivElement] | <NA> | <NA> | [object HTMLSpanElement] | <NA> | follow | <NA> | <NA> | <NA> | <NA> | _self | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 15 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | follow | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /administration/donald-j-trump/ | <NA> | https://www.whitehouse.gov/administration/donald-j | [object HTMLDivElement] | <NA> | <NA> | 300 | 420 | <NA> | <NA> | wp-block-cover__action | wp-block-cover__action | <NA> | <a class="wp-block-cover__action" href="https://ww | 300 | 420 | 300 | 420 | [object HTMLSpanElement] | [object HTMLDivElement] | [object HTMLDivElement] | <NA> | <NA> | [object HTMLSpanElement] | <NA> | follow | <NA> | <NA> | <NA> | <NA> | _self | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 16 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | follow | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /administration/jd-vance/ | <NA> | https://www.whitehouse.gov/administration/jd-vance | [object HTMLDivElement] | <NA> | <NA> | 264 | 369 | <NA> | <NA> | wp-block-cover__action | wp-block-cover__action | <NA> | <a class="wp-block-cover__action" href="https://ww | 264 | 369 | 264 | 369 | [object HTMLSpanElement] | [object HTMLDivElement] | [object HTMLDivElement] | <NA> | <NA> | [object HTMLSpanElement] | <NA> | follow | <NA> | <NA> | <NA> | <NA> | _self | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 17 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | follow | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /administration/melania-trump/ | <NA> | https://www.whitehouse.gov/administration/melania- | [object HTMLDivElement] | <NA> | <NA> | 264 | 369 | <NA> | <NA> | wp-block-cover__action | wp-block-cover__action | <NA> | <a class="wp-block-cover__action" href="https://ww | 264 | 369 | 264 | 369 | [object HTMLSpanElement] | [object HTMLDivElement] | [object HTMLDivElement] | <NA> | <NA> | [object HTMLSpanElement] | <NA> | follow | <NA> | <NA> | <NA> | <NA> | _self | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 18 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | follow | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /administration/the-cabinet/ | <NA> | https://www.whitehouse.gov/administration/the-cabi | [object HTMLDivElement] | <NA> | <NA> | 264 | 369 | <NA> | <NA> | wp-block-cover__action | wp-block-cover__action | <NA> | <a class="wp-block-cover__action" href="https://ww | 264 | 369 | 264 | 369 | [object HTMLSpanElement] | [object HTMLDivElement] | [object HTMLDivElement] | <NA> | <NA> | [object HTMLSpanElement] | <NA> | follow | <NA> | <NA> | <NA> | <NA> | _self | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 19 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Read More | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /issues/ | <NA> | https://www.whitehouse.gov/issues/ | [object HTMLDivElement] | 405 | <NA> | 136 | 51 | READ MORE | READ MORE | wp-block-button__link has-white-color has-text-col | wp-block-button__link has-white-color has-text-col | Read More | <a class="wp-block-button__link has-white-color ha | 132 | 47 | 132 | 47 | <NA> | [object HTMLDivElement] | [object HTMLDivElement] | [object Text] | [object Text] | <NA> | Read More | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 20 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /about-the-white-house/the-white-house/ | <NA> | https://www.whitehouse.gov/about-the-white-house/t | [object HTMLBodyElement] | 3221 | 51 | 336 | 290 | <NA> | <NA> | <NA> | | <img loading="lazy" decoding="async" width="336" h | <a href="https://www.whitehouse.gov/about-the-whit | 336 | 290 | 336 | 290 | <NA> | [object HTMLElement] | [object HTMLElement] | [object HTMLImageElement] | [object HTMLImageElement] | <NA> | <NA> | <NA> | <NA> | [object HTMLImageElement] | [object HTMLImageElement] | 1 | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 21 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /about-the-white-house/camp-david/ | <NA> | https://www.whitehouse.gov/about-the-white-house/c | [object HTMLBodyElement] | 3221 | 455 | 336 | 290 | <NA> | <NA> | <NA> | | <img loading="lazy" decoding="async" width="336" h | <a href="https://www.whitehouse.gov/about-the-whit | 336 | 290 | 336 | 290 | <NA> | [object HTMLElement] | [object HTMLElement] | [object HTMLImageElement] | [object HTMLImageElement] | <NA> | <NA> | <NA> | <NA> | [object HTMLImageElement] | [object HTMLImageElement] | 1 | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 22 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /about-the-white-house/air-force-one/ | <NA> | https://www.whitehouse.gov/about-the-white-house/a | [object HTMLBodyElement] | 3221 | 860 | 336 | 290 | <NA> | <NA> | <NA> | | <img loading="lazy" decoding="async" width="336" h | <a href="https://www.whitehouse.gov/about-the-whit | 336 | 290 | 336 | 290 | <NA> | [object HTMLElement] | [object HTMLElement] | [object HTMLImageElement] | [object HTMLImageElement] | <NA> | <NA> | <NA> | <NA> | [object HTMLImageElement] | [object HTMLImageElement] | 1 | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 23 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | News | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /news/ | <NA> | https://www.whitehouse.gov/news/ | [object HTMLBodyElement] | 3731 | 36 | 39 | 36 | News | News | <NA> | | News | <a href="https://www.whitehouse.gov/news/">News</a | 39 | 36 | 39 | 36 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | News | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 24 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Administration | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /administration/ | <NA> | https://www.whitehouse.gov/administration/ | [object HTMLBodyElement] | 3767 | 36 | 109 | 36 | Administration | Administration | <NA> | | Administration | <a href="https://www.whitehouse.gov/administration | 109 | 36 | 109 | 36 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Administration | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 25 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Issues | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /issues/ | <NA> | https://www.whitehouse.gov/issues/ | [object HTMLBodyElement] | 3803 | 36 | 43 | 36 | Issues | Issues | <NA> | | Issues | <a href="https://www.whitehouse.gov/issues/">Issue | 43 | 36 | 43 | 36 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Issues | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 26 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Contact | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /contact/ | <NA> | https://www.whitehouse.gov/contact/ | [object HTMLBodyElement] | 3839 | 36 | 58 | 36 | Contact | Contact | <NA> | | Contact | <a href="https://www.whitehouse.gov/contact/">Cont | 58 | 36 | 58 | 36 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Contact | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 27 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Visit | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /visit/ | <NA> | https://www.whitehouse.gov/visit/ | [object HTMLBodyElement] | 3875 | 36 | 33 | 36 | Visit | Visit | <NA> | | Visit | <a href="https://www.whitehouse.gov/visit/">Visit< | 33 | 36 | 33 | 36 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Visit | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 28 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | noopener nofollow | X | https://twitter.com | twitter.com | twitter.com | /whitehouse | <NA> | https://twitter.com/whitehouse | [object HTMLBodyElement] | 3861 | 1028 | 49 | 25 | X | X | wp-block-social-link-anchor | wp-block-social-link-anchor | <svg width="24" height="24" viewBox="0 0 24 24" xm | <a rel="noopener nofollow" target="_blank" href="h | 49 | 25 | 49 | 25 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object SVGSVGElement] | [object HTMLSpanElement] | <NA> | X | noopener nofollow | <NA> | [object SVGSVGElement] | [object HTMLSpanElement] | 2 | _blank | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 29 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | noopener nofollow | Instagram | https://www.instagram.com | www.instagram.com | www.instagram.com | /whitehouse/ | <NA> | https://www.instagram.com/whitehouse/ | [object HTMLBodyElement] | 3861 | 1077 | 49 | 25 | Instagram | Instagram | wp-block-social-link-anchor | wp-block-social-link-anchor | <svg width="24" height="24" viewBox="0 0 24 24" xm | <a rel="noopener nofollow" target="_blank" href="h | 49 | 25 | 49 | 25 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object SVGSVGElement] | [object HTMLSpanElement] | <NA> | Instagram | noopener nofollow | <NA> | [object SVGSVGElement] | [object HTMLSpanElement] | 2 | _blank | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 30 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | noopener nofollow | Facebook | https://www.facebook.com | www.facebook.com | www.facebook.com | /WhiteHouse/ | <NA> | https://www.facebook.com/WhiteHouse/ | [object HTMLBodyElement] | 3861 | 1127 | 49 | 25 | Facebook | Facebook | wp-block-social-link-anchor | wp-block-social-link-anchor | <svg width="24" height="24" viewBox="0 0 24 24" xm | <a rel="noopener nofollow" target="_blank" href="h | 49 | 25 | 49 | 25 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object SVGSVGElement] | [object HTMLSpanElement] | <NA> | Facebook | noopener nofollow | <NA> | [object SVGSVGElement] | [object HTMLSpanElement] | 2 | _blank | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 31 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | home | WH.GOV | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | / | <NA> | https://www.whitehouse.gov/ | [object HTMLBodyElement] | 4231 | 36 | 93 | 46 | WH.GOV | WH.GOV | <NA> | | WH.GOV | <a href="https://www.whitehouse.gov" rel="home" ti | 93 | 46 | 93 | 46 | <NA> | [object HTMLDivElement] | [object HTMLDivElement] | [object Text] | [object Text] | [object Text] | WH.GOV | home | The White House | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 32 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Copyright | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /copyright/ | <NA> | https://www.whitehouse.gov/copyright/ | [object HTMLBodyElement] | 4244 | 285 | 69 | 18 | Copyright | Copyright | <NA> | | Copyright | <a href="https://www.whitehouse.gov/copyright/">Co | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Copyright | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 33 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Privacy | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /privacy/ | <NA> | https://www.whitehouse.gov/privacy/ | [object HTMLBodyElement] | 4244 | 402 | 49 | 18 | Privacy | Privacy | <NA> | | Privacy | <a href="https://www.whitehouse.gov/privacy/">Priv | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Privacy | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
| 34 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | / | #top | https://www.whitehouse.gov/#top | [object HTMLBodyElement] | 4218 | 1159 | 88 | 72 | <NA> | <NA> | <NA> | | <svg xmlns="http://www.w3.org/2000/svg" width="24" | <a href="#top" title="Back to top">\n <svg x | 88 | 72 | 88 | 72 | <NA> | [object HTMLDivElement] | [object HTMLDivElement] | [object Text] | [object Text] | [object Text] | | <NA> | Back to top | [object SVGSVGElement] | [object SVGSVGElement] | 1 | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\Program Files\Microsoft VS Code\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |
Raw data
{
"_id": null,
"home_page": "https://github.com/hansalemaos/cythonselenium",
"name": "cythonselenium",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "SeleniumBase, Selenium, Cython, Pandas",
"author": "Johannes Fischer",
"author_email": "aulasparticularesdealemaosp@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/24/a6/03c6eaac14fb62da72ba723a9ca9c48fbb40eadd6f7b0462e4bc9ac71813/cythonselenium-0.12.tar.gz",
"platform": null,
"description": "\r\n# Fast Web Scraping with Python and Selenium / SeleniumBase / Undetected Chromedriver\r\n\r\n## `pip install cythonselenium`\r\n\r\n### Cython and a C/C++ compiler must be installed! The module will be compiled the first time you import it!\r\n\r\n- Provides a structured DataFrame format for web elements, simplifying data manipulation.\r\n- Seamlessly integrates with Selenium / SeleniumBase WebDriver for robust browser interactions.\r\n- Capable of handling dynamic content and content within iframes, crucial for modern web applications.\r\n- Enables execution of JavaScript functions directly on web elements.\r\n- Offers customizable CSS selectors, waiting conditions, and method attachments for flexible web scraping.\r\n- Incorporates explicit waits to enhance the reliability of web interactions.\r\n- Supports repeat queries for dealing with asynchronously loaded content.\r\n- Automatically switches to the correct frame before performing actions like clicking, ensuring seamless interaction with elements across multiple frames.\r\n- Retrieves all elements in a single request to optimize performance and reduce the load on the web server.\r\n\r\n\r\n```py\r\n\r\n# Attributes:\r\n# driver (WebDriver): The Selenium WebDriver instance used to control the browser.\r\n# By (By): Selenium By class used to locate elements on a web page.\r\n# WebDriverWait (WebDriverWait): Selenium WebDriverWait class used for implementing explicit waits.\r\n# expected_conditions (expected_conditions): Module in Selenium used to set expected conditions for explicit waits.\r\n# queryselector (str): CSS selector used to query and return elements from the DOM. Defaults to '*' which selects all elements.\r\n# repeat_until_element_in_columns (optional): Specific element to be checked for its presence in the dataframe columns before stopping the query. Useful for waiting on AJAX or dynamically loaded content.\r\n# max_repeats (int): Maximum number of iterations to perform when checking for the presence of 'repeat_until_element_in_columns'. Defaults to 1.\r\n# with_methods (bool): Flag to determine if JavaScript methods should be attached to the elements in the resulting dataframe. Defaults to True.\r\n\r\n# Methods:\r\n# __call__(queryselector=None, with_methods=None, repeat_until_element_in_columns=None, max_repeats=None, driver=None, By=None, WebDriverWait=None, expected_conditions=None):\r\n# Generates a dataframe of web elements based on the specified query selector. The dataframe can include methods attached to these elements if 'with_methods' is True. This method allows for overriding class attributes during its call for flexibility in querying different elements without needing to create multiple instances of the class.\r\n\r\nfrom cythonselenium import SeleniumFrame\r\nfrom seleniumbase import Driver\r\nfrom selenium.webdriver.support import expected_conditions\r\nfrom selenium.webdriver.support.wait import WebDriverWait\r\nfrom selenium.webdriver.common.by import By\r\nimport subprocess\r\nfrom time import sleep\r\n\r\n# for SeleniumBase zombie processes\r\nsubprocess.run(\"taskkill /IM uc_driver.exe /F\", shell=True)\r\nsleep(5)\r\n\r\nmax_col_width = 30\r\n\r\n\r\nif __name__ == \"__main__\":\r\n driver = Driver(uc=True)\r\n getframe = SeleniumFrame(\r\n driver=driver,\r\n By=By,\r\n WebDriverWait=WebDriverWait,\r\n expected_conditions=expected_conditions,\r\n queryselector=\"*\",\r\n repeat_until_element_in_columns=None,\r\n max_repeats=1,\r\n with_methods=True,\r\n )\r\n driver.get(r\"https://www.whitehouse.gov/\")\r\n\r\n df = getframe(\"*\")\r\n # Use https://github.com/directvt/vtm for a line break free experience\r\n print(df)\r\n\r\n # get only links - query selector \"a\"\r\n df2 = getframe(\"a\")\r\n\r\n # Selector\r\n df3=df2.loc[df2.aa_text=='News'] \r\n\r\n # Click on the item, without worrying about switching to the correct frame\r\n # JS click - always works\r\n df3.iloc[0].js_click()\r\n # Selenium Click\r\n df3.iloc[0].se_click()\r\n\r\n\r\n```\r\n\r\n## Example of a DataFrame (cropped to 50 chars)\r\n\r\n| index | element | frame | elements_in_frame | aa_relList | aa_text | aa_origin | aa_host | aa_hostname | aa_pathname | aa_hash | aa_href | aa_offsetParent | aa_offsetTop | aa_offsetLeft | aa_offsetWidth | aa_offsetHeight | aa_innerText | aa_outerText | aa_className | aa_classList | aa_innerHTML | aa_outerHTML | aa_scrollWidth | aa_scrollHeight | aa_clientWidth | aa_clientHeight | aa_nextElementSibling | aa_parentNode | aa_parentElement | aa_firstChild | aa_lastChild | aa_nextSibling | aa_textContent | aa_rel | aa_title | aa_firstElementChild | aa_lastElementChild | aa_childElementCount | aa_target | js_toString | js_attachInternals | js_blur | js_click | js_focus | js_hidePopover | js_showPopover | js_togglePopover | js_after | js_animate | js_append | js_attachShadow | js_before | js_checkVisibility | js_closest | js_computedStyleMap | js_getAnimations | js_getAttribute | js_getAttributeNS | js_getAttributeNames | js_getAttributeNode | js_getAttributeNodeNS | js_getBoundingClientRect | js_getClientRects | js_getElementsByClassName | js_getElementsByTagName | js_getElementsByTagNameNS | js_getHTML | js_hasAttribute | js_hasAttributeNS | js_hasAttributes | js_hasPointerCapture | js_insertAdjacentElement | js_insertAdjacentHTML | js_insertAdjacentText | js_matches | js_prepend | js_querySelector | js_querySelectorAll | js_releasePointerCapture | js_remove | js_removeAttribute | js_removeAttributeNS | js_removeAttributeNode | js_replaceChildren | js_replaceWith | js_requestFullscreen | js_requestPointerLock | js_scroll | js_scrollBy | js_scrollIntoView | js_scrollIntoViewIfNeeded | js_scrollTo | js_setAttribute | js_setAttributeNS | js_setAttributeNode | js_setAttributeNodeNS | js_setHTMLUnsafe | js_setPointerCapture | js_toggleAttribute | js_webkitMatchesSelector | js_webkitRequestFullScreen | js_webkitRequestFullscreen | js_appendChild | js_cloneNode | js_compareDocumentPosition | js_contains | js_getRootNode | js_hasChildNodes | js_insertBefore | js_isDefaultNamespace | js_isEqualNode | js_isSameNode | js_lookupNamespaceURI | js_lookupPrefix | js_normalize | js_removeChild | js_replaceChild | js_addEventListener | js_dispatchEvent | js_removeEventListener | js_wheel | js_change_html_value | se_send_keys | se_find_elements | se_find_element | se_is_displayed | se_is_enabled | se_is_selected | se_clear | se_click | se_switch_to_frame | se_location_once_scrolled_into_view | se_get_screenshot_as_file | se_screenshot | aa_window_handle | aa_window_switch |\r\n| -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- |\r\n| 0 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Skip to content | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | / | #wp--skip-link--target | https://www.whitehouse.gov/#wp--skip-link--target | [object HTMLBodyElement] | -1 | -1 | 1 | 1 | Skip to content | Skip to content | skip-link screen-reader-text | skip-link screen-reader-text | Skip to content | <a class=\"skip-link screen-reader-text\" href=\"#wp- | 69 | 93 | 1 | 1 | [object HTMLDivElement] | [object HTMLBodyElement] | [object HTMLBodyElement] | [object Text] | [object Text] | [object HTMLDivElement] | Skip to content | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 1 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | News | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /news/ | <NA> | https://www.whitehouse.gov/news/ | [object HTMLDivElement] | <NA> | 289 | 93 | 50 | NEWS | NEWS | <NA> | | News | <a href=\"https://www.whitehouse.gov/news/\">News</a | 93 | 50 | 93 | 50 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | News | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 2 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Administration | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /administration/ | <NA> | https://www.whitehouse.gov/administration/ | [object HTMLDivElement] | <NA> | 382 | 181 | 50 | ADMINISTRATION | ADMINISTRATION | <NA> | | Administration | <a href=\"https://www.whitehouse.gov/administration | 181 | 50 | 181 | 50 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Administration | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 3 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Issues | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /issues/ | <NA> | https://www.whitehouse.gov/issues/ | [object HTMLDivElement] | <NA> | 563 | 103 | 50 | ISSUES | ISSUES | <NA> | | Issues | <a href=\"https://www.whitehouse.gov/issues/\">Issue | 103 | 50 | 103 | 50 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Issues | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 4 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | home | The White House\\n\\n \\n President Donald | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | / | <NA> | https://www.whitehouse.gov/ | [object HTMLDivElement] | <NA> | <NA> | 221 | 150 | THE WHITE HOUSE\\nPRESIDENT DONALD J. TRUMP | THE WHITE HOUSE\\nPRESIDENT DONALD J. TRUMP | <NA> | | <picture>\\n <source type=\"image/webp\" srcset | <a href=\"https://www.whitehouse.gov\" rel=\"home\" ti | 221 | 150 | 221 | 150 | <NA> | [object HTMLDivElement] | [object HTMLDivElement] | [object Text] | [object Text] | [object Text] | The White House\\n\\n \\n President Donald | home | The White House | [object HTMLPictureElement] | [object HTMLSpanElement] | 3 | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 5 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | News | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /news/ | <NA> | https://www.whitehouse.gov/news/ | <NA> | <NA> | <NA> | <NA> | <NA> | News | News | <NA> | | News | <a data-wp-on-async--mouseenter=\"callbacks.handleP | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | News | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 6 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Administration | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /administration/ | <NA> | https://www.whitehouse.gov/administration/ | <NA> | <NA> | <NA> | <NA> | <NA> | Administration | Administration | <NA> | | Administration | <a data-wp-on-async--mouseenter=\"callbacks.handleP | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Administration | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 7 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Issues | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /issues/ | <NA> | https://www.whitehouse.gov/issues/ | <NA> | <NA> | <NA> | <NA> | <NA> | Issues | Issues | <NA> | | Issues | <a data-wp-on-async--mouseenter=\"callbacks.handleP | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Issues | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 8 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Contact | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /contact/ | <NA> | https://www.whitehouse.gov/contact/ | <NA> | <NA> | <NA> | <NA> | <NA> | Contact | Contact | <NA> | | Contact | <a data-wp-on-async--mouseenter=\"callbacks.handleP | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Contact | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 9 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Visit | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /visit/ | <NA> | https://www.whitehouse.gov/visit/ | <NA> | <NA> | <NA> | <NA> | <NA> | Visit | Visit | <NA> | | Visit | <a data-wp-on-async--mouseenter=\"callbacks.handleP | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Visit | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 10 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | noopener nofollow | X | https://twitter.com | twitter.com | twitter.com | /whitehouse | <NA> | https://twitter.com/whitehouse | <NA> | <NA> | <NA> | <NA> | <NA> | X | X | wp-block-social-link-anchor | wp-block-social-link-anchor | <svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" xm | <a rel=\"noopener nofollow\" target=\"_blank\" href=\"h | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object SVGSVGElement] | [object HTMLSpanElement] | <NA> | X | noopener nofollow | <NA> | [object SVGSVGElement] | [object HTMLSpanElement] | 2 | _blank | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 11 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | noopener nofollow | Instagram | https://www.instagram.com | www.instagram.com | www.instagram.com | /whitehouse/ | <NA> | https://www.instagram.com/whitehouse/ | <NA> | <NA> | <NA> | <NA> | <NA> | Instagram | Instagram | wp-block-social-link-anchor | wp-block-social-link-anchor | <svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" xm | <a rel=\"noopener nofollow\" target=\"_blank\" href=\"h | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object SVGSVGElement] | [object HTMLSpanElement] | <NA> | Instagram | noopener nofollow | <NA> | [object SVGSVGElement] | [object HTMLSpanElement] | 2 | _blank | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 12 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | noopener nofollow | Facebook | https://www.facebook.com | www.facebook.com | www.facebook.com | /WhiteHouse/ | <NA> | https://www.facebook.com/WhiteHouse/ | <NA> | <NA> | <NA> | <NA> | <NA> | Facebook | Facebook | wp-block-social-link-anchor | wp-block-social-link-anchor | <svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" xm | <a rel=\"noopener nofollow\" target=\"_blank\" href=\"h | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object SVGSVGElement] | [object HTMLSpanElement] | <NA> | Facebook | noopener nofollow | <NA> | [object SVGSVGElement] | [object HTMLSpanElement] | 2 | _blank | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 13 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | follow | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /presidential-actions/ | <NA> | https://www.whitehouse.gov/presidential-actions/ | [object HTMLDivElement] | <NA> | <NA> | 539 | 392 | <NA> | <NA> | wp-block-cover__action | wp-block-cover__action | <NA> | <a class=\"wp-block-cover__action\" href=\"https://ww | 539 | 392 | 539 | 392 | [object HTMLSpanElement] | [object HTMLDivElement] | [object HTMLDivElement] | <NA> | <NA> | [object HTMLSpanElement] | <NA> | follow | <NA> | <NA> | <NA> | <NA> | _self | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 14 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | follow | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /news/ | <NA> | https://www.whitehouse.gov/news/ | [object HTMLDivElement] | <NA> | <NA> | 539 | 392 | <NA> | <NA> | wp-block-cover__action | wp-block-cover__action | <NA> | <a class=\"wp-block-cover__action\" href=\"https://ww | 539 | 392 | 539 | 392 | [object HTMLSpanElement] | [object HTMLDivElement] | [object HTMLDivElement] | <NA> | <NA> | [object HTMLSpanElement] | <NA> | follow | <NA> | <NA> | <NA> | <NA> | _self | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 15 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | follow | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /administration/donald-j-trump/ | <NA> | https://www.whitehouse.gov/administration/donald-j | [object HTMLDivElement] | <NA> | <NA> | 300 | 420 | <NA> | <NA> | wp-block-cover__action | wp-block-cover__action | <NA> | <a class=\"wp-block-cover__action\" href=\"https://ww | 300 | 420 | 300 | 420 | [object HTMLSpanElement] | [object HTMLDivElement] | [object HTMLDivElement] | <NA> | <NA> | [object HTMLSpanElement] | <NA> | follow | <NA> | <NA> | <NA> | <NA> | _self | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 16 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | follow | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /administration/jd-vance/ | <NA> | https://www.whitehouse.gov/administration/jd-vance | [object HTMLDivElement] | <NA> | <NA> | 264 | 369 | <NA> | <NA> | wp-block-cover__action | wp-block-cover__action | <NA> | <a class=\"wp-block-cover__action\" href=\"https://ww | 264 | 369 | 264 | 369 | [object HTMLSpanElement] | [object HTMLDivElement] | [object HTMLDivElement] | <NA> | <NA> | [object HTMLSpanElement] | <NA> | follow | <NA> | <NA> | <NA> | <NA> | _self | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 17 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | follow | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /administration/melania-trump/ | <NA> | https://www.whitehouse.gov/administration/melania- | [object HTMLDivElement] | <NA> | <NA> | 264 | 369 | <NA> | <NA> | wp-block-cover__action | wp-block-cover__action | <NA> | <a class=\"wp-block-cover__action\" href=\"https://ww | 264 | 369 | 264 | 369 | [object HTMLSpanElement] | [object HTMLDivElement] | [object HTMLDivElement] | <NA> | <NA> | [object HTMLSpanElement] | <NA> | follow | <NA> | <NA> | <NA> | <NA> | _self | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 18 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | follow | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /administration/the-cabinet/ | <NA> | https://www.whitehouse.gov/administration/the-cabi | [object HTMLDivElement] | <NA> | <NA> | 264 | 369 | <NA> | <NA> | wp-block-cover__action | wp-block-cover__action | <NA> | <a class=\"wp-block-cover__action\" href=\"https://ww | 264 | 369 | 264 | 369 | [object HTMLSpanElement] | [object HTMLDivElement] | [object HTMLDivElement] | <NA> | <NA> | [object HTMLSpanElement] | <NA> | follow | <NA> | <NA> | <NA> | <NA> | _self | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 19 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Read More | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /issues/ | <NA> | https://www.whitehouse.gov/issues/ | [object HTMLDivElement] | 405 | <NA> | 136 | 51 | READ MORE | READ MORE | wp-block-button__link has-white-color has-text-col | wp-block-button__link has-white-color has-text-col | Read More | <a class=\"wp-block-button__link has-white-color ha | 132 | 47 | 132 | 47 | <NA> | [object HTMLDivElement] | [object HTMLDivElement] | [object Text] | [object Text] | <NA> | Read More | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 20 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /about-the-white-house/the-white-house/ | <NA> | https://www.whitehouse.gov/about-the-white-house/t | [object HTMLBodyElement] | 3221 | 51 | 336 | 290 | <NA> | <NA> | <NA> | | <img loading=\"lazy\" decoding=\"async\" width=\"336\" h | <a href=\"https://www.whitehouse.gov/about-the-whit | 336 | 290 | 336 | 290 | <NA> | [object HTMLElement] | [object HTMLElement] | [object HTMLImageElement] | [object HTMLImageElement] | <NA> | <NA> | <NA> | <NA> | [object HTMLImageElement] | [object HTMLImageElement] | 1 | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 21 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /about-the-white-house/camp-david/ | <NA> | https://www.whitehouse.gov/about-the-white-house/c | [object HTMLBodyElement] | 3221 | 455 | 336 | 290 | <NA> | <NA> | <NA> | | <img loading=\"lazy\" decoding=\"async\" width=\"336\" h | <a href=\"https://www.whitehouse.gov/about-the-whit | 336 | 290 | 336 | 290 | <NA> | [object HTMLElement] | [object HTMLElement] | [object HTMLImageElement] | [object HTMLImageElement] | <NA> | <NA> | <NA> | <NA> | [object HTMLImageElement] | [object HTMLImageElement] | 1 | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 22 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | <NA> | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /about-the-white-house/air-force-one/ | <NA> | https://www.whitehouse.gov/about-the-white-house/a | [object HTMLBodyElement] | 3221 | 860 | 336 | 290 | <NA> | <NA> | <NA> | | <img loading=\"lazy\" decoding=\"async\" width=\"336\" h | <a href=\"https://www.whitehouse.gov/about-the-whit | 336 | 290 | 336 | 290 | <NA> | [object HTMLElement] | [object HTMLElement] | [object HTMLImageElement] | [object HTMLImageElement] | <NA> | <NA> | <NA> | <NA> | [object HTMLImageElement] | [object HTMLImageElement] | 1 | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 23 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | News | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /news/ | <NA> | https://www.whitehouse.gov/news/ | [object HTMLBodyElement] | 3731 | 36 | 39 | 36 | News | News | <NA> | | News | <a href=\"https://www.whitehouse.gov/news/\">News</a | 39 | 36 | 39 | 36 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | News | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 24 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Administration | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /administration/ | <NA> | https://www.whitehouse.gov/administration/ | [object HTMLBodyElement] | 3767 | 36 | 109 | 36 | Administration | Administration | <NA> | | Administration | <a href=\"https://www.whitehouse.gov/administration | 109 | 36 | 109 | 36 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Administration | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 25 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Issues | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /issues/ | <NA> | https://www.whitehouse.gov/issues/ | [object HTMLBodyElement] | 3803 | 36 | 43 | 36 | Issues | Issues | <NA> | | Issues | <a href=\"https://www.whitehouse.gov/issues/\">Issue | 43 | 36 | 43 | 36 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Issues | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 26 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Contact | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /contact/ | <NA> | https://www.whitehouse.gov/contact/ | [object HTMLBodyElement] | 3839 | 36 | 58 | 36 | Contact | Contact | <NA> | | Contact | <a href=\"https://www.whitehouse.gov/contact/\">Cont | 58 | 36 | 58 | 36 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Contact | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 27 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Visit | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /visit/ | <NA> | https://www.whitehouse.gov/visit/ | [object HTMLBodyElement] | 3875 | 36 | 33 | 36 | Visit | Visit | <NA> | | Visit | <a href=\"https://www.whitehouse.gov/visit/\">Visit< | 33 | 36 | 33 | 36 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Visit | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 28 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | noopener nofollow | X | https://twitter.com | twitter.com | twitter.com | /whitehouse | <NA> | https://twitter.com/whitehouse | [object HTMLBodyElement] | 3861 | 1028 | 49 | 25 | X | X | wp-block-social-link-anchor | wp-block-social-link-anchor | <svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" xm | <a rel=\"noopener nofollow\" target=\"_blank\" href=\"h | 49 | 25 | 49 | 25 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object SVGSVGElement] | [object HTMLSpanElement] | <NA> | X | noopener nofollow | <NA> | [object SVGSVGElement] | [object HTMLSpanElement] | 2 | _blank | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 29 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | noopener nofollow | Instagram | https://www.instagram.com | www.instagram.com | www.instagram.com | /whitehouse/ | <NA> | https://www.instagram.com/whitehouse/ | [object HTMLBodyElement] | 3861 | 1077 | 49 | 25 | Instagram | Instagram | wp-block-social-link-anchor | wp-block-social-link-anchor | <svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" xm | <a rel=\"noopener nofollow\" target=\"_blank\" href=\"h | 49 | 25 | 49 | 25 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object SVGSVGElement] | [object HTMLSpanElement] | <NA> | Instagram | noopener nofollow | <NA> | [object SVGSVGElement] | [object HTMLSpanElement] | 2 | _blank | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 30 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | noopener nofollow | Facebook | https://www.facebook.com | www.facebook.com | www.facebook.com | /WhiteHouse/ | <NA> | https://www.facebook.com/WhiteHouse/ | [object HTMLBodyElement] | 3861 | 1127 | 49 | 25 | Facebook | Facebook | wp-block-social-link-anchor | wp-block-social-link-anchor | <svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" xm | <a rel=\"noopener nofollow\" target=\"_blank\" href=\"h | 49 | 25 | 49 | 25 | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object SVGSVGElement] | [object HTMLSpanElement] | <NA> | Facebook | noopener nofollow | <NA> | [object SVGSVGElement] | [object HTMLSpanElement] | 2 | _blank | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 31 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | home | WH.GOV | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | / | <NA> | https://www.whitehouse.gov/ | [object HTMLBodyElement] | 4231 | 36 | 93 | 46 | WH.GOV | WH.GOV | <NA> | | WH.GOV | <a href=\"https://www.whitehouse.gov\" rel=\"home\" ti | 93 | 46 | 93 | 46 | <NA> | [object HTMLDivElement] | [object HTMLDivElement] | [object Text] | [object Text] | [object Text] | WH.GOV | home | The White House | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 32 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Copyright | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /copyright/ | <NA> | https://www.whitehouse.gov/copyright/ | [object HTMLBodyElement] | 4244 | 285 | 69 | 18 | Copyright | Copyright | <NA> | | Copyright | <a href=\"https://www.whitehouse.gov/copyright/\">Co | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Copyright | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 33 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | Privacy | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | /privacy/ | <NA> | https://www.whitehouse.gov/privacy/ | [object HTMLBodyElement] | 4244 | 402 | 49 | 18 | Privacy | Privacy | <NA> | | Privacy | <a href=\"https://www.whitehouse.gov/privacy/\">Priv | <NA> | <NA> | <NA> | <NA> | <NA> | [object HTMLLIElement] | [object HTMLLIElement] | [object Text] | [object Text] | <NA> | Privacy | <NA> | <NA> | <NA> | <NA> | <NA> | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n| 34 | <seleniumbase.undetected.webelement.WebElement (se | mainframe | 35 | | | https://www.whitehouse.gov | www.whitehouse.gov | www.whitehouse.gov | / | #top | https://www.whitehouse.gov/#top | [object HTMLBodyElement] | 4218 | 1159 | 88 | 72 | <NA> | <NA> | <NA> | | <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" | <a href=\"#top\" title=\"Back to top\">\\n <svg x | 88 | 72 | 88 | 72 | <NA> | [object HTMLDivElement] | [object HTMLDivElement] | [object Text] | [object Text] | [object Text] | | <NA> | Back to top | [object SVGSVGElement] | [object SVGSVGElement] | 1 | <NA> | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | () | None | () | C:\\Program Files\\Microsoft VS Code\\seleniumpicture | () | A9CDA196DDDB8CEBE79EAB2ECF20D18C | () |\r\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Web Scraping with Selenium / SeleniumBase / Undetected Chromedriver and Cython+Pandas",
"version": "0.12",
"project_urls": {
"Homepage": "https://github.com/hansalemaos/cythonselenium"
},
"split_keywords": [
"seleniumbase",
" selenium",
" cython",
" pandas"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "9706ff504401c9c2f1d4b55b3b34e0ff9328a33981f41a0f831bec9e91e81b0f",
"md5": "3a111914e9b359d03ea516cb8daaea1a",
"sha256": "095cbc423f8633a9a6932587aa4c4e4bf789f4461f813b1f5ea4d50941f37726"
},
"downloads": -1,
"filename": "cythonselenium-0.12-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3a111914e9b359d03ea516cb8daaea1a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 50790,
"upload_time": "2025-02-16T22:29:35",
"upload_time_iso_8601": "2025-02-16T22:29:35.603852Z",
"url": "https://files.pythonhosted.org/packages/97/06/ff504401c9c2f1d4b55b3b34e0ff9328a33981f41a0f831bec9e91e81b0f/cythonselenium-0.12-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "24a603c6eaac14fb62da72ba723a9ca9c48fbb40eadd6f7b0462e4bc9ac71813",
"md5": "c975951160440c8d053e8c08962190d1",
"sha256": "f89ec210d2f07b41c5c646415d0a9bb9db80efd7110267fa7a224d93b929b7a9"
},
"downloads": -1,
"filename": "cythonselenium-0.12.tar.gz",
"has_sig": false,
"md5_digest": "c975951160440c8d053e8c08962190d1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 63788,
"upload_time": "2025-02-16T22:29:38",
"upload_time_iso_8601": "2025-02-16T22:29:38.509958Z",
"url": "https://files.pythonhosted.org/packages/24/a6/03c6eaac14fb62da72ba723a9ca9c48fbb40eadd6f7b0462e4bc9ac71813/cythonselenium-0.12.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-16 22:29:38",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "hansalemaos",
"github_project": "cythonselenium",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [
{
"name": "Cython",
"specs": []
},
{
"name": "numpy",
"specs": []
},
{
"name": "pandas",
"specs": []
},
{
"name": "setuptools",
"specs": []
},
{
"name": "regex",
"specs": []
}
],
"lcname": "cythonselenium"
}