Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Selenium problem after upgrade to latest sc8 build

    1. can not use mouseOver and mouseMove to show tooltip
    2. radio Group button can not be selected.
    3.isElementPresent only check for the ID of the Dynamic form, but not for the name of the element on the form to identify an element.

    the above three cases worked fine in some previous sc 8 builds.

    #2
    Clear your cache to ensure you do not have stale resources. If the problem persist, gather the information necessary to allow us to reproduce the problem (always the same information) and post it.

    Comment


      #3
      1 and 2 dont exist any more.
      but 3 still exist, eventhough i clean the cache

      test case:
      goto
      Code:
      http://www.smartclient.com/docs/7.0rc2/a/system/reference/SmartClient_Explorer.html#formLayoutTitles
      click the first text field.
      the locator received from selenium will be
      Code:
      scLocator=//DynamicForm[ID=\"exampleForm\"]/item[name='username'][Class=\"TextItem\"]/element
      During playback
      1.selenium.isElementPresent("scLocator=//DynamicForm[ID=\"exampleForm\"]/item[name='usernamekevin'][Class=\"TextItem\"]/element") should return false since value of name is not correct. but returns true
      2.selenium.isElementPresent("scLocator=//DynamicForm[ID=\"exampleForm\"]/item[name='username'][Class=\"TextItem\"]/elementkevin"); return correct result

      Comment

      Working...
      X