Skip to content

Commit

Permalink
added tests for web_drivers
Browse files Browse the repository at this point in the history
  • Loading branch information
samuel-cavalcanti committed Dec 17, 2022
1 parent daf81c6 commit 3d86f57
Show file tree
Hide file tree
Showing 4 changed files with 6,429 additions and 0 deletions.
11 changes: 11 additions & 0 deletions mkdocs_with_pdf/drivers/web_driver.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from typing import Protocol


class WebDriver(Protocol):

def render(self, html: str) -> str:
"""
Receive an html page in string format and execute the javascript
returning the new rendered html
"""
...
Loading

0 comments on commit 3d86f57

Please sign in to comment.