Iakiv Kramarenko
Iakiv Kramarenko
should already work... just test coverage needed...
Actually the same behaviour exist in raw selenium's driver.findElement().findElement() So seems like that's ok...
The original idea was to add ability to create custom elements that behave like SElement and can be produced by SCollection So, e.g. You could write ``` public class Task...
fixed to: ``` OpenQA.Selenium.WebDriverTimeoutException : Timed out after 0.25 seconds while waiting entity with locator: By.Selene: (By.Selene: (By.CssSelector: #todo-list>li).FindBy(ExactText is a)).FindInner(By.CssSelector: .edit) for condition: Visible Expected : True Actual :...
``` Open("http://todomvc4tasj.herokuapp.com/"); S("#new-todo").SetValue("a").PressEnter(); S("#new-todo").SetValue("c").PressEnter(); SS("#todo-list>a").FindBy(Have.ExactText("b")) .DoubleClick(); ``` And for this should be something like: > ... > Expected: contains b > Actual: []
fixed to: ``` OpenQA.Selenium.WebDriverTimeoutException : Timed out after 0.25 seconds while waiting entity with locator: By.Selene: (By.CssSelector: #todo-list>li).FindBy(ExactText is b) for condition: Visible Expected : True Actual : False ---->...
enhanced a bit: ``` OpenQA.Selenium.WebDriverTimeoutException : Timed out after 0.25 seconds while waiting entity with locator: By.Selene: (By.CssSelector: #todo-list>li).FindBy(ExactText is b) for condition: Visible Expected : True Actual : False...
let's keep as simple as passing -n 4, -n auto to pytest, without supporting corresponding env vars, just to keep things simpler... Just in case, the solution should be based...
Just in case, it might look something like that in the external plugin (yet it can placed locally in this repo, and probably should...) ```python def pytest_load_initial_conftests(args): import sys if...
@rina-tenitska, great! Please, refactor files – 1 by 1 and each time: - create a new issue named `improve tests structure of $FILE_NAME` - link this issue to this #313...