-
| Hi everyone, | 
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
| This is what I saw when running it: The dashboard link should be displayed in the console. If not, add  | 
Beta Was this translation helpful? Give feedback.
-
| After some test, I found out that the dashboard.html only shows when the function is warpped within class. class Test_get_one_tour_photo_only_SB:
    @pytest.mark.parametrize("one_tour_info_list", tour_url_dta_list)
    def test_get_one_tour_photo_only_SB(self ,sb, one_tour_info_list, headless = True):
        
        with SB(uc = True, headless = headless) as sb:
    
            sb.open(tour_main_page_url)If the function aren't wrapped within the class, the dashboard.html won't show. When testing, some issue related to dashboard showed. | 
Beta Was this translation helpful? Give feedback.
-
| After using pure  | 
Beta Was this translation helpful? Give feedback.

This is what I saw when running it: