sridharbandi / Java-a11y

Accessibility Automated Testing with Java Selenium
https://sridharbandi.github.io/Java-a11y/
MIT License
12 stars 12 forks source link

Utils for getting errors, warnings, notices count #23

Closed akramshuja closed 1 year ago

akramshuja commented 1 year ago

Hi Sridhar, We already had a test suite running on your 2.0 alpha 2 release. We decided to upgrade it to the latest 3.01, but we noticed that the below is no longer supported:

  1. Getting the count of all issues. We used to take various decisions based on these counts.
  2. Providing a page name manually on which tests are executed. From what I understand, it always picks up from the title of the page now. The way our application works is different, we have multiple iframes in the background, but only one of them is rendered at once. And each of them can have its own title.
dnoclark commented 1 year ago

Hi Sridhar, same need for me ;)

sridharbandi commented 1 year ago

Hi, I wasn't aware that feature is been used. I am working on it and will release it in couple of days.

sridharbandi commented 1 year ago

Released V3.0.2 to set Page Title and to get the issues count. Example: Issues issues = htmlCsRunner.setPageTile("Page Title").execute();

akramshuja commented 1 year ago

Thank you