-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CSS selectors calculation done separately for each element (#198)
* Calculating CSS selectors one-by-one in a shared Selenium session * CSS selectors caching decorator fix * Extending shared Selenoid session idle timeout Doing that to prevent session from being destroyed in-between tasks execution * Locators calculation speedup
- Loading branch information
Showing
6 changed files
with
67 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
__all__ = [ | ||
"CSS_SELECTOR_GEN_TASK_PREFIX", | ||
"task_schedule_css_selectors_generation", | ||
"task_schedule_css_selector_generation", | ||
"inject_css_selector_generator_scripts", | ||
] | ||
|
||
from .tasks import task_schedule_css_selectors_generation, CSS_SELECTOR_GEN_TASK_PREFIX | ||
from .tasks import task_schedule_css_selector_generation, CSS_SELECTOR_GEN_TASK_PREFIX | ||
from .utils import inject_css_selector_generator_scripts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters