使用 Selenium 测试断开链接在 testNG 中不起作用

Test for Broken Links is not working in testNG using Selenium

下面是在 Selenium 中 运行 但在转换为 testNG 时不会的测试。当 testNG 中的 运行 不显示任何测试 运行。感谢任何帮助。

谢谢,

public class Links_on_login_page {
        
    @Test
    public static void main(String[] args) 
    {
        WebDriver driver=new ChromeDriver();
        driver.manage().window().maximize();        
        driver.get("https://gmail.com");        
        List<WebElement> links=driver.findElements(By.tagName("a"));        
        System.out.println("Total links are "+links.size());        
        for(int i=0;i<links.size();i++)
        {           
            WebElement ele= links.get(i);           
            String url=ele.getAttribute("href");            
            verifyLinkActive(url);          
        }
            }   
    public static void verifyLinkActive(String linkUrl)
    {
        try 
        {
           URL url = new URL(linkUrl);           
           HttpURLConnection httpURLConnect=(HttpURLConnection)url.openConnection();           
           httpURLConnect.setConnectTimeout(3000);
           httpURLConnect.connect();           
           if(httpURLConnect.getResponseCode()==200)
           {
               System.out.println(linkUrl+" - "+httpURLConnect.getResponseMessage());
            }
          if(httpURLConnect.getResponseCode()==HttpURLConnection.HTTP_NOT_FOUND)  
           {
               System.out.println(linkUrl+" - "+httpURLConnect.getResponseMessage() + " - "+ HttpURLConnection.HTTP_NOT_FOUND);
            }
        } catch (Exception e) {
           
        }
    } 
}

如评论所述,需要更新@Test 下的方法名称。还将路径添加到 chromedriver.exe。对于 testng 参考 https://testng.org/doc/documentation-main.html

    @Test
    public void brokenURLsTest()
    {
        System.setProperty("webdriver.chrome.driver", "C:\Users\mural\Downloads\chromedriver_win32 (1)\chromedriver.exe");
        WebDriver driver=new ChromeDriver();
        driver.manage().window().maximize();        
        driver.get("https://gmail.com");        
        List<WebElement> links=driver.findElements(By.tagName("a"));        
        System.out.println("Total links are "+links.size());        
        for(int i=0;i<links.size();i++)
        {           
            WebElement ele= links.get(i);           
            String url=ele.getAttribute("href");            
            verifyLinkActive(url);          
        }
            }   
    public static void verifyLinkActive(String linkUrl)
    {
        try 
        {
           URL url = new URL(linkUrl);           
           HttpURLConnection httpURLConnect=(HttpURLConnection)url.openConnection();           
           httpURLConnect.setConnectTimeout(3000);
           httpURLConnect.connect();           
           if(httpURLConnect.getResponseCode()==200)
           {
               System.out.println(linkUrl+" - "+httpURLConnect.getResponseMessage());
            }
          if(httpURLConnect.getResponseCode()==HttpURLConnection.HTTP_NOT_FOUND)  
           {
               System.out.println(linkUrl+" - "+httpURLConnect.getResponseMessage() + " - "+ HttpURLConnection.HTTP_NOT_FOUND);
            }
        } catch (Exception e) {
           
        }
    }