Development

Tool – JMeter, version 5.1.1

I am testing an application with API request and I am getting an error:
javax.net.ssl.SSLHandshakeException for load test.

This issue occurs when I try to execute only load test with number of users simultaneously.
I have had a word with the Dev team and as per them there is no issue from server side configuration.

Can anyone help me resolve this issue. Appreciate quick feedback.

Currently, our automation suite runs on Chrome (has been designed for Chrome).
We used Cucumber with Java and Selenium.
We are trying to make the current automation suite multi-browser compatible. The current automation code supports Firefox 50% and IE the least.
How do we make this code work on IE, Firefox?
Please suggest the easy ways.

next_btn = driver.find_element_by_xpath(“//a[@class=’ge-49M’]”)
for i in next_btn:
driver.get(i)
lnks = driver.find_elements_by_xpath(“//a[@class=’_2UzuFa’]”)
for z in lnks:
href_new.append(z.get_attribute(‘href’))

Here I am trying to retrieve all the links present in every page like(1,2,3,4,5) and from these links I want to retrieve the links of the products.
TypeError Traceback (most recent call last)
<ipython-input-118-b4d6c76aecdf> in <module>
1 next_btn = driver.find_element_by_xpath(“//a[@class=’ge-49M’]”)
—-> 2 for i in next_btn:
3 driver.get(i)
4 lnks = driver.find_elements_by_xpath(“//a[@class=’_2UzuFa’]”)
5 for z in lnks:

TypeError: ‘WebElement’ object is not iterable

But it’s throwing this error.