A new request with request id 15320 has been created by koha-devel-request@lists.koha-community.org. Short info on the request is :
Title : Koha-devel Digest, Vol 190, Issue 21
Category :
Description : Send Koha-devel mailing list submissions to
koha-devel@lists.koha-community.org
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
or, via email, send a message with subject or body 'help' to
koha-devel-request@lists.koha-community.org
You can reach the person managing the list at
koha-devel-owner@lists.koha-community.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Koha-devel digest..."
Today's Topics:
1. Roles for 22.05 open (Jonathan Druart)
2. Koha Community Newsletter: September 2021 (Koha Newsletter)
3. Re: Release Manager for 22.05 (Victor Grousset/tuxayo)
4. Can we add HTML classes to add semantic to elements when
writing automated UI tests? (Victor Grousset/tuxayo)
5. Re: Can we add HTML classes to add semantic to elements when
writing automated UI tests? (Noor Khalid)
6. Re: Can we add HTML classes to add semantic to elements when
writing automated UI tests? (Jonathan Druart)
----------------------------------------------------------------------
Message: 1
Date: Wed, 29 Sep 2021 17:12:27 +0200
From: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
To: koha <koha@lists.katipo.co.nz>, koha-devel
<koha-devel@lists.koha-community.org>
Subject: [Koha-devel] Roles for 22.05 open
Message-ID:
<CAJzKNY54cnPaGdvJaifhr4O6aHv1LKV8+BV_K6T_zD5NhxEBCQ@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"
Hello everybody,
The roles for the 22.05 release cycle are now opened.
The vote will take place during one of the dev meetings in October.
https://wiki.koha-community.org/wiki/Roles_for_22.05
The description of the roles can be found at this wiki page
https://wiki.koha-community.org/wiki/Project_roles
Regards,
Jonathan
------------------------------
Message: 2
Date: Wed, 29 Sep 2021 19:03:37 +0200
From: Koha Newsletter <kohanews@gmail.com>
To: koha <koha@lists.katipo.co.nz>, koha-devel
<koha-devel@lists.koha-community.org>
Subject: [Koha-devel] Koha Community Newsletter: September 2021
Message-ID:
<CAEqgz_mVYtbZ9x6vfhz73HL3u76iRtMPAm7r7_HU=2Fx6Yr3ow@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"
The Koha Community Newsletter for September 2021 is here:
* https://koha-community.org/koha-community-newsletter-september-2021/
Many thanks to everyone who submitted articles and news to this newsletter!
Please feel free to email me with any corrections or suggestions.
--
Michael Kuhn
Editor, Koha Community Newsletter
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.koha-community.org/pipermail/koha-devel/attachments/20210929/bacf06c5/attachment-0001.htm>
------------------------------
Message: 3
Date: Wed, 29 Sep 2021 20:23:34 +0200
From: Victor Grousset/tuxayo <victor@tuxayo.net>
To: Paul Poulain <paul.poulain@biblibre.com>, koha-devel
<koha-devel@lists.koha-community.org>, Fridolin SOMERS
<fridolin.somers@biblibre.com>
Subject: Re: [Koha-devel] Release Manager for 22.05
Message-ID: <3df251f3-0af7-54de-5f3e-cd0803f317fd@tuxayo.net>
Content-Type: text/plain; charset=utf-8; format=flowed
Fantastic news! :D
> The roles_for_22.05 page has not been created on the wiki if I'm not
> wrong, shall I create it ?
Here it is, since today
https://wiki.koha-community.org/wiki/Roles_for_22.05
cc Fridolin
Cheers,
--
Victor Grousset/tuxayo
------------------------------
Message: 4
Date: Thu, 30 Sep 2021 00:25:01 +0200
From: Victor Grousset/tuxayo <victor@tuxayo.net>
To: koha-devel <koha-devel@lists.koha-community.org>
Subject: [Koha-devel] Can we add HTML classes to add semantic to
elements when writing automated UI tests?
Message-ID: <78e08fe6-74d1-5c7c-ec77-f0612ab44215@tuxayo.net>
Content-Type: text/plain; charset=utf-8; format=flowed
Hi :)
I'm writing an UI test for creating a club to later use it for holds.
In the page /cgi-bin/koha/clubs/clubs.pl
There is the button "New club" , I would like to click on it but it has
nothing in the classes or id that tells it's this button.
I could use a vague and fragile in the long run selector like ".main
.dropdown-toggle" and comment explaining what it is.
Or I could add a class like "new-club" to the <button>
Maybe there is a way I missed to have a readable, concise and durable
way to click on the dropdown button but the question will still stand
for a future case way there won't be such a way.
Also maybe there is better class name than "new-club".
The naming practice is also an important question.
Cheers,
--
Victor Grousset/tuxayo
------------------------------
Message: 5
Date: Thu, 30 Sep 2021 07:45:06 +0500
From: Noor Khalid <noorkhalid88@gmail.com>
To: "Victor Grousset/tuxayo" <victor@tuxayo.net>
Cc: koha-devel <koha-devel@lists.koha-community.org>
Subject: Re: [Koha-devel] Can we add HTML classes to add semantic to
elements when writing automated UI tests?
Message-ID:
<CAO9o0-rptvj3-kLC4Tec+Ex8MK_qJ7fTiAsUw09RHdwhb=GoAA@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"
On Thu, Sep 30, 2021, 3:25 AM Victor Grousset/tuxayo <victor@tuxayo.net>
wrote:
> Hi :)
>
> I'm writing an UI test for creating a club to later use it for holds.
> In the page /cgi-bin/koha/clubs/clubs.pl
> There is the button "New club" , I would like to click on it but it has
> nothing in the classes or id that tells it's this button.
>
> I could use a vague and fragile in the long run selector like ".main
> .dropdown-toggle" and comment explaining what it is.
>
> Or I could add a class like "new-club" to the <button>
>
> Maybe there is a way I missed to have a readable, concise and durable
> way to click on the dropdown button but the question will still stand
> for a future case way there won't be such a way.
>
> Also maybe there is better class name than "new-club".
> The naming practice is also an important question.
>
> Cheers,
>
> --
> Victor Grousset/tuxayo
> _______________________________________________
> Koha-devel mailing list
> Koha-devel@lists.koha-community.org
> https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
> website : https://www.koha-community.org/
> git : https://git.koha-community.org/
> bugs : https://bugs.koha-community.org/
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.koha-community.org/pipermail/koha-devel/attachments/20210930/982e1567/attachment-0001.htm>
------------------------------
Message: 6
Date: Thu, 30 Sep 2021 08:21:58 +0200
From: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
To: "Victor Grousset/tuxayo" <victor@tuxayo.net>
Cc: koha-devel <koha-devel@lists.koha-community.org>
Subject: Re: [Koha-devel] Can we add HTML classes to add semantic to
elements when writing automated UI tests?
Message-ID:
<CAJzKNY6KdtQH8hnH1adtPaZEqJVMbtzSfOU9m5awLazA=kCK-w@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"
Hi Victor,
Yes, assign a class or id to the element.
This is done several times in basic_workflow.t
Cheers,
Jonathan
Le jeu. 30 sept. 2021 à 00:25, Victor Grousset/tuxayo
<victor@tuxayo.net> a écrit :
>
> Hi :)
>
> I'm writing an UI test for creating a club to later use it for holds.
> In the page /cgi-bin/koha/clubs/clubs.pl
> There is the button "New club" , I would like to click on it but it has
> nothing in the classes or id that tells it's this button.
>
> I could use a vague and fragile in the long run selector like ".main
> .dropdown-toggle" and comment explaining what it is.
>
> Or I could add a class like "new-club" to the <button>
>
> Maybe there is a way I missed to have a readable, concise and durable
> way to click on the dropdown button but the question will still stand
> for a future case way there won't be such a way.
>
> Also maybe there is better class name than "new-club".
> The naming practice is also an important question.
>
> Cheers,
>
> --
> Victor Grousset/tuxayo
> _______________________________________________
> Koha-devel mailing list
> Koha-devel@lists.koha-community.org
> https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
> website : https://www.koha-community.org/
> git : https://git.koha-community.org/
> bugs : https://bugs.koha-community.org/
------------------------------
Subject: Digest Footer
_______________________________________________
Koha-devel mailing list
Koha-devel@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
website : https://www.koha-community.org/
git : https://git.koha-community.org/
bugs : https://bugs.koha-community.org/
------------------------------
End of Koha-devel Digest, Vol 190, Issue 21
*******************************************
NOTE: You are receiving this mail because, the Requester/Technician wanted you to get notified on this request creation.