Posts by Wiliane Souza • 21 points
3 posts
-
0
votes0
answers25
viewsQ: How to use UML package diagram to mount system interface?
I have the following diagram, which is not formatted following any UML diagram. The purpose of it is to represent the functioning and connection of each part of the problem solution (a web…
-
1
votes1
answer769
viewsA: Xpath with Python - Pick up text after tag in a div
I believe I was able to solve using the concepts of inheritance in Xpath. I used post.xpath(".//div[@class='list-view-item-date']/descendant-or-self::*/text()")[1]) Instead of…
-
1
votes1
answer769
viewsQ: Xpath with Python - Pick up text after tag in a div
I’m trying to get a text after a tag that’s inside a div, in an html. The problem I’m having is that I’m not getting the text, just an empty string. I’ve looked elsewhere and I haven’t seen anyone…