I’m trying to build a HTML page that has a table with rows of information (test cases, failed, warning, total # of tests)
I want each row in the Test Cases column to be a link to another page.
As you see in the image below, my goal is for Test 1 to be a link.
Below is the code that I wrote to build what you see in the image.
Thanks.
JavaScript
x
30
30
1
import bs4
2
f = open("practice.html", 'w')
3
html = """<html>
4
<body>
5
<table class="details" border="1" cellpadding="5" cellspacing="2" style="width:95%">
6
</table>
7
</body>
8
</html>"""
9
soup = bs4.BeautifulSoup(html, "lxml")
10
table = soup.find('table')
11
tr = bs4.Tag(table, name='tr')
12
HTMLColumns = ["Test Cases", "Failed", "Warning", "Total number of tests"]
13
for title in HTMLColumns: # Add titles to each column
14
td = bs4.Tag(tr, name='td')
15
td.insert(0, title)
16
td.attrs['style'] = 'background-color: #D6FCE9; font-weight: bold;'
17
tr.append(td)
18
table.append(tr)
19
results = ["Test 1", str(5), str(3), str(6)]
20
tr = bs4.Tag(table, name='tr')
21
for index, r in enumerate(results): # loop through whole list of issue tuples, and create rows
22
td = bs4.Tag(tr, name='td')
23
td.attrs['style'] = 'background-color: #ffffff; font-weight: bold;'
24
td.string = str(r)
25
tr.append(td)
26
table.append(tr)
27
28
f.write(soup.prettify())
29
f.close()
30
Below is code for creating a link that I took from BeautifulSoup documentation:
JavaScript
1
17
17
1
from bs4 import BeautifulSoup
2
3
soup = BeautifulSoup("<b></b>", "lxml")
4
original_tag = soup.b
5
6
new_tag = soup.new_tag("a", href="http://www.example.com")
7
original_tag.append(new_tag)
8
original_tag
9
# <b><a href="http://www.example.com"></a></b>
10
11
new_tag.string = "Link text."
12
original_tag
13
# <b><a href="http://www.example.com">Link text.</a></b>
14
f = open("practice.html", 'w')
15
f.write(soup.prettify())
16
f.close()
17
Advertisement
Answer
JavaScript
1
44
44
1
# This is updated code
2
# You just need to add: a = bs4.Tag(td, name='a') to you'r code
3
# Then you need to fill it:
4
5
# if index == 0:
6
# a.attrs[''] = 'a href="http://www.yahoo.com"'
7
# a.string = r
8
# td.append(a)
9
10
11
12
import bs4
13
f = open("practice.html", 'w')
14
html = """<html>
15
<body>
16
<table class="details" border="1" cellpadding="5" cellspacing="2" style="width:95%">
17
</table>
18
</body>
19
</html>"""
20
soup = bs4.BeautifulSoup(html, "lxml")
21
table = soup.find('table')
22
tr = bs4.Tag(table, name='tr')
23
HTMLColumns = ["Test Cases", "Failed", "Warning", "Total number of tests"]
24
for title in HTMLColumns: # Add titles to each column
25
td = bs4.Tag(tr, name='td')
26
td.insert(0, title)
27
td.attrs['style'] = 'background-color: #D6FCE9; font-weight: bold;'
28
tr.append(td)
29
table.append(tr)
30
results = [str(k), str(v), str(0), str(v)]
31
tr = bs4.Tag(table, name='tr')
32
for index, r in enumerate(results): # loop through whole list of issue tuples, and create rows
33
td = bs4.Tag(tr, name='td')
34
td.attrs['style'] = 'background-color: #ffffff; font-weight: bold;'
35
a = bs4.Tag(td, name='a')
36
if index == 0:
37
a.attrs[''] = 'a href="http://www.yahoo.com"'
38
a.string = r
39
td.append(a)
40
tr.append(td)
41
table.append(tr) # append the row to the table
42
f.write(soup.prettify())
43
f.close()
44