Skip to content

Commit

Permalink
Merge pull request #2203 from zGadli/dev
Browse files Browse the repository at this point in the history
Fix #2200
  • Loading branch information
dipu-bd authored Dec 4, 2023
2 parents 9041a7d + 947d738 commit dc08406
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sources/en/s/scribblehub.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ def parse_search_item(self, tag: Tag) -> SearchResult:
)

def visit_novel_page_in_browser(self) -> BeautifulSoup:
url_parts = self.novel_url.split("/")
self.novel_url = f'{url_parts[0]}/{url_parts[2]}/{url_parts[3]}/{url_parts[4]}/'
logger.debug(self.novel_url)
self.visit(self.novel_url)
self.browser.wait(".fictionposts-template-default")

Expand Down

0 comments on commit dc08406

Please sign in to comment.