Hello peeps,
Hope everything is going well.
I am an absolute beginner in robot framework. I started writing the code for entering username and password for Browser Authentication Pop-up. Although I try using this kind of URL “https://username:password@…”, the browser is not opening due to the security reason.
I tried alternative ways like Autoit, pyautogui, javascript code. But getting this error message for any kind of option.
Created TensorFlow Lite XNNPACK delegate for CPU.
Attempting to use a delegate that only supports static-sized tensors with a graph that has dynamic-sized tensors (tensor#58 is a dynamic-sized tensor).
The following is the sample code using one javascript code sentence.
Pre Authentication Login
${prefs}= Create Dictionary
… credentials_enable_service=${FALSE}
… profile.password_manager_enabled=${FALSE}
${options}= Evaluate sys.modules['selenium.webdriver'].ChromeOptions() sys
Call Method ${options} add_experimental_option prefs ${prefs}
Call Method ${options} add_experimental_option detach ${TRUE}
Open Browser ${URL} browser=${BROWSER} options=${options}
# Try to use Selenium directly
Execute JavaScript window.navigator.credentials = { get: () => Promise.resolve({ id: '${preauth_username}', password: '${preauth_password}' }) };
Go To ${URL}
Let me request you guys’ helps on this.
With Regards,
Zuzan