Playwright1.42,chrome is being controlled by automated testing software

async def setup_browser(self):
    async with async_playwright() as p:
        self.playwright = p

        self.browser_context = await self.playwright.chromium.launch_persistent_context(
            headless=False,
            user_data_dir=self.user_data_dir,
            args=[
                '--disable-blink-features=AutomationControlled',  
                '--disable-infobars',  

Ask the masters how to hide or remove chrome is being controlled by automatic test software???