Solved
Forum Discussion
rupert_anderson
9 years agoValued Contributor
Ok, are you able to share your Python script please?
I take it it runs OK if you execute it from a shell outside of SoapUI?
Possibly the way the chrome browser is executed under the shell process is an issue, perhaps a headless browser driver like the PhantomJS one might work better. I am not a Selenium expert, but can take a look.
chiragverma123
9 years agoContributor
Yes when I run it from shell outside SOAPUI, it works fine. Here is the code below:
from selenium import webdriver
driver = webdriver.Chrome()
driver.maximize_window()
driver.get('https://google.Companydata')