I have two loop controllers inside a simple controller.
But it stops running after the execution of first loop even if the results is successful.

Structure is given below

ThreadGroup

Simple Controller 1

HTTP Request
Loop Controller1 (Loops 10 times with a CSV file)
Loop Controller2 (Loops 25 times with another CSV file)

Simple Controller 2

HTTP Request 1
HTTP Request 2
HTTP Request 3
Loop Controller 3 (Loops 15 times 3rd CSV file)

But execution stops after completing Loop controller 2. It doesn’t go for the Loop controller 2 or doesn’t start Simple Controller 2. If Simple Controller 1 is disabled, it will run Simple Controller 2 successfully.

Any suggestion will be of great help.
Thanks

How do I detect text inside of this, this is HTML & this is XPath. I tried

HTML
<span class=”messageText”>Hello.</span>
XPath
//*[@id=”liveAgentChatLogText”]/span[22]/span[2]

I tried with this but it didn’t work, it said no such element found.

driver.find_element(By.XPATH, ‘//*[@id=”liveAgentChatLogText”]//*[contains(string(.), “Hello”)]’)

I’m working on a project with www.NJMLS.com. I’m trying to extract email of agent name “Edward An”:
import dryscrape as d
d.start_xvfb()
br = d.Session()
br.visit(‘http://www.njmls.com/members/index.cfm?action=dsp.results&city=&county=&nametype=firstname&name=Edward&x=70&y=33’)
#open url and try to extract the email of Edward An

How to get email of “Edward An”? If I try:
for x in br.xpath(“//*[@class = ‘realtor-info’]/*”)
# selecting all elements in <div class=”realtor-info”>….</div>
if “Edward An” in x:
print x[‘herf’]
#Not responding

I am not getting any response.
What’s wrong with my script?
if “Edward An” in x.text()
print x

This is also not working. Still there is no error and no response.

<svg aria-label=”Unlike” class=”_8-yf5 ” color=”#ed4956″ fill=”#ed4956″ height=”24″ role=”img” viewBox=”0 0 48 48″ width=”24″><path d=”M34.6 3.1c-4.5 0-7.9 1.8-10.6 5.6-2.7-3.7-6.1-5.5-10.6-5.5C6 3.1 0 9.6 0 17.6c0 7.3 5.4 12 10.6 16.5.6.5 1.3 1.1 1.9 1.7l2.3 2c4.4 3.9 6.6 5.9 7.6 6.5.5.3 1.1.5 1.6.5s1.1-.2 1.6-.5c1-.6 2.8-2.2 7.8-6.8l2-1.8c.7-.6 1.3-1.2 2-1.7C42.7 29.6 48 25 48 17.6c0-8-6-14.5-13.4-14.5z”></path></svg>

I’m needing to grab area-label=”Unlike” but can’t figure out how. I’ve tried the following:
browser.find_element_by_xpath(“//svg[@class=’_8-yf5 ”][@aria-label=’Unlike’]”)

I’m using Python 3.11.5, and I want to extract text from a Webelement with selenium.
I use Chromedriver as a driver, and I want to find an element By.CLASS_NAME
Here is my code

What happens ?

When I print (element), it gives me a Webdriver element, which I can’t read.

When I print (element.text), it gives me an error :

Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘NewConnectionError(‘<urllib3.connection.HTTPConnection object at 0x000001DDFE4F0690>: Failed to establish a new connection: [WinError 10061] Aucune connexion n’a pu être établie car l’ordinateur cible l’a expressément refusée’)’: /session/0109eeaf781d2f899ee82e0fd10eac19/execute/sync
What have I tried ?

After using driver.get(url), I already tried to apply time.sleep(10)

I checked my versions of Chrome + Chromedriver

I disabled my proxy

Do you have any idea about what the problem is ?