Skip to content

reset schedule_render_later flag after triggering #688

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 25, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix typing issue with latest ver of selenium
  • Loading branch information
rmorshea committed Feb 24, 2022
commit 4a5ecdfc68077e665626d8fc3329de2edc42f696
6 changes: 4 additions & 2 deletions src/idom/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
from uuid import uuid4
from weakref import ref

from selenium.webdriver import Chrome
from selenium.webdriver.chrome.options import Options as ChromeOptions
from selenium.webdriver.chrome.webdriver import WebDriver as Chrome
from selenium.webdriver.common.options import BaseOptions
from selenium.webdriver.remote.webdriver import WebDriver

from idom.config import IDOM_WEB_MODULES_DIR
Expand All @@ -47,7 +49,7 @@

def create_simple_selenium_web_driver(
driver_type: Type[WebDriver] = Chrome,
driver_options: Optional[Any] = None,
driver_options: BaseOptions = ChromeOptions(),
implicit_wait_timeout: float = 10.0,
page_load_timeout: float = 5.0,
window_size: Tuple[int, int] = (1080, 800),
Expand Down