Skip to content

Releases: yashaka/NSelene

1.0.0-alpha14

28 Aug 20:36
Compare
Choose a tag to compare
  • add Configuration.LogOuterHtmlOnFailure (false by default)
    • to disable previously mandatory logging of outer html of elements in error messages
      that was the reason of failures when working with Appium

1.0.0-alpha13

13 Feb 12:19
Compare
Choose a tag to compare
  • fix element.GetAttribute to call webelement.GetAttribute instead of webelement.GetDomAttribute
    • correspondingly the behavior of element.Value is also fixed, becaused is based on element.GetAttribute

1.0.0-alpha12

09 Feb 15:17
Compare
Choose a tag to compare

Selenium 4.17+ and BaseUrl in config

  • upgraded Selenium.WebDriver to 4.* (i.e. to 4.17.0 as of 2024.02.09)
    • WDM is not used anymore in NSelene examples and removed from README
      since Selenium Manager is in charge of managing drivers now
  • added Configuration.BaseUrl, thanks to @davespoon
  • added Have.AttributeWithValue* conditions, thanks to @davespoon

v1.0.0-alpha11

16 May 14:50
Compare
Choose a tag to compare

collection.ElementByIts(innerLocator, condition)

  • upgraded Selenium.WebDriver from from 4.2.0 to 4.9.1
  • collection.ElementBy(condition) alias to collection.FindBy(condition)
    • FindBy will be probably deprecated in future
  • collection.By(condition) alias to collection.FilterBy(condition)
    • FilterBy will be probably deprecated in future
  • element.Element(locator | selector) alias to element.Find(locator | selector)
    • Find will be probably deprecated in future
  • element.All(locator | selector) alias to element.FindAll(locator | selector)
    • FindAll will be probably deprecated in future
  • Should(driverCondition) alias to WaitTo(driverCondition)
  • conditions: Have.Url, .UrlContaining, Title, TitleContaining
  • collection.ElementByIts(locator | selector, condition)
    • so you can implement something like this:
      SS(".table-row").ElementByIts(".table-cell[role=name]", Have.Text("John")).Element("[role=remove-user]").Click()

upgraded Selenium.WebDriver from 3.141.0 to 4.2.0

27 May 19:05
Compare
Choose a tag to compare
  • upgraded Selenium.WebDriver from 3.141.0 to 4.2.0
    • kept old-fashioned names for SeleneElement.GetAttribute & .GetProperty
      but now under the hood they use new GetDomAttribute & GetDomProperty correspondingly
    • added SeleneElement.GetShadowRoot as wrapper over WebElement.GetShadowRoot

Improved errors for inner search and fixed _HookWaitAction in Should

18 May 21:21
Compare
Choose a tag to compare
  • improved error messages for cases of inner element search
    • like error on S(".parent").Find(".child").Click() when .parent is absent or not visible
  • FIXED experimental Configuration._HookWaitAction application to Should methods on SeleneElement and SeleneCollection
    (was not working, just being skipped)

Waiting for SeleneElementJsExtensions

18 May 16:04
Compare
Choose a tag to compare
Pre-release

Added waiting to SeleneElementJsExtensions

  • JsClick
  • JsType
  • JsSetValue

Improved conditions logging in errors and first experimental waiting hooks

13 May 22:49
Compare
Choose a tag to compare
  • improved error messsages
    • now condition in Should method will be rendered like:
      ... .Should(Be.Visible) over just ... .Visible
  • deprecated SeleneElement#config, use SeleneElement#Config instead (same for SeleneCollection)
    • yet be attentive... the fate of keeping SeleneElement#Config as public is also vague...
  • added experimental feature: Configuration._HookWaitAction
    • prefixed with underscore implies that this feature is kind of "publically available private property that might be changed/renamed/removed/etc in future;)", so use it on your own risk!!!
    • by default equals to null, making internally call waiting algorithm for actions as it is, without additional customization
    • specified to something like:
      Configuration._HookWaitAction = (entity_object, describe_computation, wait) => {
          Console.WriteLine($"STARTED WAITING FOR: {entity_object}.{describe_computation()}");
          try
          {
              wait();
              Console.WriteLine($"FINISHED WAITING FOR: {entity_object}.{describe_computation()}");
          }
          catch (Exception error)
          {
              Console.WriteLine($"FAILED WAITING FOR: {entity_object}.{describe_computation()}");
              throw error;
          }
      };
      
      • should provide some additinal logging for all Selene actions, called on entities (like SeleneElement, SeleneCollection)
      • under actions we mean "void commands" not "queries returning result".
        • void command like element.Should(condition) will return the element itself instead of void ;)

turned off automatic Configuration.WaitForNoOverlapFoundByJs by default

12 May 12:33
Compare
Choose a tag to compare
  • turned off "waiting for no overlay" that was built-in in alpha05 in all actions. (#85)
    • cause it could break some NSelene + Appium mobile tests that can't use JS, while this waiting was built on top of JS so it's relevant only for web...
    • yet the Configuration.WaitForNoOverlapFoundByJs was added (false by default)
      • so you can turn it on globally by Configuration.WaitForNoOverlapFoundByJs = true
      • or per element by element.With(waitForNoOverlapFoundByJs: true)
    • in future we might made this waiting enabled by default, when we provide better docs and plugins to work with Appium
  • added rendering of elements under overlay into errors (#84)
    • made rendering elements HTML – lazy (when waiting for no overlap)
      • should improve performance in context of polling during waiting

Faster, full unti-flakyness, parallelisation-friendly, customizable per elements

29 Apr 20:15
Compare
Choose a tag to compare

SUMMARY:

  • upgraded waiting of commands, error messages, thread local configuration, etc. (see CHANGELOG for more details)
    • it should be
      • faster,
      • more stable/less-flaky (with implicit waiting till no overlay-style pre-loaders)
      • more friendly to parallelisation in context of configuration,
      • more customizable on elements level (not just global)

Migrating from 1.0.0-alpha03 guide

  • upgrade and check your build
    • refactor your custom conditions:
      • if you have implemented your own custom conditions by extending e.g. Condition<SeleneElement>
        • you will get a compilation error – to fix it:
          • change base class from Condition<SeleneElement> to DescribedCondition<SeleneElement>
          • remove public override string Explain() and leave public override string ToString() instead
          • if you use anywehere in your code an Apply method on condition of type Condition<TEntity>
            • you will get an obsolete warning
              • refactor your code to use Invoke method, taking into account that
                • anytime Apply throws exception - Invoke also throws exception
                • anytime Apply returns false - Invoke throws exception
                • anytime Apply returns true - Invoke just passes (it's of void type)
    • refactor obsolete things, like:
      • Configuration.WebDriver => Configuration.Driver
      • S("#element").ShouldNot(Be.*) to S("#element").Should(Be.Not.*)
      • S("#element").ShouldNot(yourCustomCondition) to S("#element").Should(yourCustomCondition.Not)
      • etc
  • take into account, that some "internal" methods of 1.0.0-alpha05 were made public for easiser experimental testing in prod:),
    but still considered as internal, that might change in future
    such methods are named with _ prefix,
    following kind of Python lang style of "still publically accessible private" methods:)
    use such methods on your own risk, take into account that they might be marked as obsolete in future
    yet, they will be eather renamed or made completely internal till stable 1.0 release;)
    read CHANGELOG for more details.

Details

  • added Be.Not.* and Have.No.* as entry points to "negated conditions"
  • .ShouldNot is obsolete now, use .Should(Be.Not.*) or .Should(Have.No.*) instead
  • added Condition#Not property, Condition#Or(condition), Condition#And(condition)
    • added condition-builder classes, yet marked as internal
      • Not<TEntity> : Condition<TEntity>
      • Or<TEntity> : Condition<TEntity>
      • And<TEntity> : Condition<TEntity>
      • yet they might be renamed in future... to something like NotCondition, OrConditioin, AndCondition
      • let's finalize the naming in #53
  • added SeleneElement extensions
    • .JsScrollIntoView()
    • .JsClick(centerXOffset=0, centerYOffset=0)
      • proper tests coverage is yet needed
      • the same can be achieved through (can be handy when storing element in var)
        element.With(clickByJs: true).Click()
    • .JsSetValue(value)
      • the same can be achieved through
        element.With(setValueByJs: true).SetValue(value)
    • .JsType(value)
      • the same can be achieved through
        element.With(typeByJs: true).Type(value)
  • made Configuration.* ThreadLocal
  • added SeleneElement methods:
    • WaitUntil(Condition) – like Should, but returns false on failure
    • Matching(Condition) - the predicate, like WaitUntil but without waiting
    • With([driver], [timeout], [pollDuringWaits], [setValueByJs], [typeByJs], [clickByJs]) - to override corresponding selene setting from Configuration
      • usage: element.With(timeout: 2.0)
    • _With_(_SeleneSettings_) option to fully disconnect element config from shared Configuration
      • underscores mean that method signature might change...
      • usage: element._With_(Configuration.New(timeout: 2.0))
  • added SeleneCollection methods:
    • WaitUntil(Condition) – like Should, but returns false on failure
    • Matching(Condition) - the predicate, like WaitUntil but without waiting
    • With([driver], [timeout], [pollDuringWaits], [setValueByJs], [typeByJs], [clickByJs]) - to override corresponding selene setting from Configuration
    • _With_(_SeleneSettings_) option to fully disconnect element config from shared Configuration
      • underscores mean that method signature might change...
      • usage: elements._With_(Configuration.New(timeout: 2.0))
  • added SeleneDriver methods:
    • WaitUntil(Condition) – like Should, but returns false on failure
    • Matching(Condition) - the predicate, like WaitUntil but without waiting
    • With([driver], [timeout], [pollDuringWaits], [setValueByJs], [typeByJs], [clickByJs]) - to override corresponding selene setting from Configuration
    • _With_(_SeleneSettings_) option to fully disconnect element config from shared Configuration
      • underscores mean that method signature might change...
      • usage: elements._With_(Configuration.New(timeout: 2.0))
  • tuned selene elements representation in error messages
    • now code like SS(".parent").FilterBy(Be.Visible)[0].SS(".child").FindBy(Have.CssClass("special")).S("./following-sibling::*")
    • renders to: Browser.All(.parent).By(Visible)[0].All(.child).FirstBy(has CSS class 'special').Element(./following-sibling::*)
  • improved waiting (waits not just for visibility but till "being passed") at SeleneElement's:
    • (... wait till visible and not overlapped)
      • Click()
      • Hover()
      • DoubleClick()
      • Submit()
      • Clear()
      • SetValue(keys)
      • Type(keys)
      • PressEnter()
      • PressEscape()
      • PressTab()
    • (... wait till visible for all but input[type=file])
      • SendKeys(keys)
  • upgraded waiting to new engine in asserts (.Should(condition)) of
    • SeleneElement
    • SeleneCollection
  • Deprecated (Marked as Obsolete)
    • Configuration.WebDriver (use Configuration.Driver instead)
      • it also becomes a recommended wa
        • to set driver: Configuration.Driver = myDriverInstance
          • over Selene.SetWebDriver(myDriverInstance)
            • that might be deprecated in future
        • also take into account that in frameworks like NUnit3,
          when you tear down driver in OneTimeTearDown (that will be executed after all test methods)
          ensure you do this by calling Quit on your own instance like myDriverInstance.Quit()
          DON'T do it like Configuration.Driver.Quit() or Selene.GetWebDriver().Quit()
          cause this will lead in memory leaked driver, this is NUnit thing, not NSelene:)
          (you still can do the latter in TearDown method that will be executed after each test method)
  • potential breaking changes:
    • Switched to System.TimeoutException in some waits (instead of WebDriverTimeoutException)